"Windows 10 ARM 32 bits verified"

I notice you’re asking for a paper on — but this phrase combines terms that are technically incompatible or do not exist as a supported configuration.

a specific 32-bit Arm driver, or are you checking if a certain legacy application will still run on your device? Windows Arm-based PCs FAQ - Microsoft Support

: Windows 10 on Arm can run 32-bit x86 (Intel/AMD) apps through emulation, but it run 64-bit x64 apps (that feature requires Windows 11) Microsoft Learn How to Verify Your Version

  1. You double-click old32bit.exe.
  2. Windows recognizes the x86 PE header (Portable Executable).
  3. The OS redirects the process to %SystemRoot%\SysWOW64\ (on ARM, this contains x86 emulation DLLs).
  4. The xtajit.dll driver (the ARM x86 JIT compiler) loads. It reads x86 instructions one block at a time.
  5. It translates those instructions into ARM64 instructions in RAM.
  6. The ARM CPU executes the translated code.

No 32-bit ARM user-mode or kernel