home *** CD-ROM | disk | FTP | other *** search
- .title "Intel compatibility test"
- .opdef dw,.drw
- .opdef db,.db
- .opdef org,.org
- .opdef set,.cset
- .opdef equ,.cequ
- .opdef end,.end
- dw 23,1,2
- dw $23,$1,$2
- dw `23'
- macro testmacro, `dw 23, $1,$2'
- macro testmacro2, `db $1
- db $2,022h,01b,022d,44q
- dw $3,033
- db "this is a test"'
- ;test motorola hex
- changemacroprefix(`@');
- macro testmacro3, `dw 23,@1,@2 ';
- macro testmacro4, `db @1
- db @2,$22,$022
- dw @3,033
- db "this is a test"'
- ;test 1
- testmacro 1,2
- ;test2
- testmacro2 1,2,3
- ;test3
- testmacro3 4,5
- ;test4
- testmacro4 6,7,`8
- db 9'
-
- end