It is related to convert *.ASM files built for X816 and WLADX for ASCII font compatibility,
Example:
.asctable ; ( ''asciitable'' can also be a alias )
.map 0 to 9 = $00 ; Numbers ( ''ascmap'' can also be a alias )
.map A to Z = $0A ; Letters
.map $20 = $24 ; Hex Value
.map 33 = $25 ; Decimal Value ( $24 )
.map %10000000 = $80 ; Binary Value ( $80 )
;....ect
.ascend ; ( ''asciiend'' can also be a alias )
Can anyone be able to improve ASM6 with this? This will improve compatibility with those assemblers with Ascii Table-like Commands, Therefore. Is a good reason to propose this.
(If Loopy is dead, At least someone else can give credit and use his code to recreate these commands)
EDIT: Typo Fixed
Example:
.asctable ; ( ''asciitable'' can also be a alias )
.map 0 to 9 = $00 ; Numbers ( ''ascmap'' can also be a alias )
.map A to Z = $0A ; Letters
.map $20 = $24 ; Hex Value
.map 33 = $25 ; Decimal Value ( $24 )
.map %10000000 = $80 ; Binary Value ( $80 )
;....ect
.ascend ; ( ''asciiend'' can also be a alias )
Can anyone be able to improve ASM6 with this? This will improve compatibility with those assemblers with Ascii Table-like Commands, Therefore. Is a good reason to propose this.
(If Loopy is dead, At least someone else can give credit and use his code to recreate these commands)
EDIT: Typo Fixed