unprefixed

A program of Character sets.

This program is not meant to build. What the tool says is the lesson.

NGA2237 `Ż` is not ASCII and this literal names no character set /Users/waldek/Desktop/NGA/tutorial/11-character-sets/unprefixed/name.asm:5

main.ngp

target { region $0080 .. $00FF ram   region $2000 .. $BFFF ram }
modules { "name.asm" }
container raw

name.asm

; tag unprefixed
; A literal with no prefix is the source's own bytes, so it has to be ASCII.
.section
name
        .byte "ŻÓŁW"
.ends
; end unprefixed

.proc entry
        lda name
        rts
.endp