barotto / test386.asm

x86 CPU tester for emulators
GNU General Public License v3.0
51 stars 4 forks source link

Assembling error, symbol GP_HANDLER_SIG undefined #8

Closed barotto closed 6 years ago

barotto commented 6 years ago

nasm -i./src/ -f bin src/test386.asm -w-all -l test386.lst -o test386.bin src/test386.asm:820:error: symbol GP_HANDLER_SIG' undefined make: *** [test386] Error 1

Interim solution: turn on the Bochs support (BOCHS equ becoming 1) in src/configuration.asm

superfury commented 6 years ago

I've just pulled the latest commit, but that gets me the following compiler error:

nasm -i./src/ -f bin src/test386.asm -w-all -l test386.lst -o test386.bin
src/test386.asm:405: fatal: unable to open include file `protected_ring3_m.asm'
make: *** [test386] Error 1

Edit: Made it compile by adding an empty file named protected_ring3_m.asm.

barotto commented 6 years ago

Thanks, fixed. I really need to stop being lazy and start using git branch...