mirror of https://github.com/wwarthen/RomWBW.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
361 B
19 lines
361 B
;
|
|
; To make it easier to port code from other assemblers,
|
|
; this maps some common psuedo-ops into TASM versions.
|
|
;
|
|
#define EQU .equ
|
|
#define equ .equ
|
|
#define END .end
|
|
#define end .end
|
|
#define DEFB .db
|
|
#define DB .db
|
|
#define db .db
|
|
#define DEFW .dw
|
|
#define DW .dw
|
|
#define dw .dw
|
|
#define DS .ds
|
|
#define ds .ds
|
|
#define ORG .org
|
|
#define org .org
|
|
#define TEXT .text
|
|
|