mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 14:11:48 -06:00
20 lines
361 B
C++
20 lines
361 B
C++
;
|
|
; 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
|