The /tests/pc folder is now /tests/pcx86 (to be consistent with the associated emulator)

This commit is contained in:
Jeff Parsons 2016-08-09 11:48:09 -07:00
commit 663343a1ad
68 changed files with 24 additions and 16 deletions

View file

@ -1,17 +0,0 @@
CR equ 0x0d
LF equ 0x0a
;
; The "set" macro initializes a register to the specified value (eg, "set eax,0")
;
%macro set 2
%ifnum %2
%if %2 = 0
xor %1,%1
%else
mov %1,%2
%endif
%else
mov %1,%2
%endif
%endmacro