MASM32

開發環境


參考資訊:
1. masm32

司徒目前是使用Box86 + Wine當作開發測試環境,Box86可以用來執行Intel x86指令集的程式,Box64則是可以用來執行Intel x64指令集的程式,而Wine則是可以用來跑Windows程式,Wine是Windows API層相容,但不是二進制層相容,意思就是,如果Wine是ARM armhf版本的話,Wine執行的程式就必須是ARM armhf指令集的程式,而如果Wine是Intel x86/x64版本,Wine執行的程式就必須是Intel x86/x64指令集的程式,這也是為何Windows PE程式(Intel x86/x64)可以在Linux PC(Intel x86/x64)下用Wine來執行的原因,而司徒目前是要在手機(ARM aarch64)上開發Windows x86/x64程式,所以才需要使用Box86 + Wine,司徒使用的Wine版本支援Intel x86(wine)/x64(win64)程式,安裝步驟如下:

$ cd
$ wget https://raw.githubusercontent.com/ThieuMinh26/Proot-Setup/main/Box86-64_Wine86-64.sh
$ chmod a+x ./Box86-64_Wine86-64.sh
$ ./Box86-64_Wine86-64.sh

$ WINEPREFIX=/home/user/.wine_amd64 box86 wine winecfg

DPI設定成144


接着使用司徒已經解開的檔案

$ cd
$ git clone https://github.com/steward-fu/win32
$ cp -a win32/masm32 /home/user/.wine_amd64/drive_c/

接着測試是否可以正常執行程式

$ WINEPREFIX=/home/user/.wine_amd64 box86 wine /home/user/.wine_amd64/drive_c/masm32/demo.exe


P.S. 所有需要的Share Library(*.so and *.dll)都必須成功載入,否者將無法正確執行Windows PE程式


返回上一頁