1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-11-22 01:31:33 +00:00

Added test file work/a02inc.a02

This commit is contained in:
Curtis F Kaylor 2019-11-16 12:25:38 -05:00
parent 62430453cc
commit 0c4e6f1ff8

18
work/a02inc.a02 Normal file
View File

@ -0,0 +1,18 @@
;A02 Assembler Test Include File
TRUE: EQU $FF
FALSE: .EQU $00
one equ 1
two .equ 1 + 1
three equ one + one + one
four .equ three + 1
PNTR: EQU $80
.local EQU 99
STRUCT EQU $0FFF
.END ;Return to Main File
IGNORE EQU $9999 ;This will Not be Assembled