程式語言 - High Level Assembly (HLA) - Win32 API (HLA v1.x) - 開發環境



參考網站:
https://www.plantation-productions.com/Webster/HighLevelAsm/dnld.html

司徒目前是使用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://github.com/steward-fu/website/releases/download/pro1/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
$ wget https://github.com/steward-fu/website/releases/download/hla/hla.tar.gz
$ wget https://github.com/steward-fu/website/releases/download/nasm/masm32.tar.gz
$ tar xvf hla.tar.gz
$ tar xvf masm32.tar.gz
$ mv hla /home/user/.wine_amd64/drive_c/
$ mv masm32 /home/user/.wine_amd64/drive_c/

環境變數設定如下:

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



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

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


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