Search found 2 matches

by Rotekoppen
Thu Dec 27, 2018 1:36 pm
Forum: Newbie Help Center
Topic: Using #LOW(Label) errors as Undefined symbol in Nesasm v3.1
Replies: 2
Views: 2886

Re: Using #LOW(Label) errors as Undefined symbol in Nesasm v

Thanks for the help!

Turned out (the label) Pal1 didn't exist.
by Rotekoppen
Thu Dec 27, 2018 1:22 pm
Forum: Newbie Help Center
Topic: Using #LOW(Label) errors as Undefined symbol in Nesasm v3.1
Replies: 2
Views: 2886

Using #LOW(Label) errors as Undefined symbol in Nesasm v3.1

My code: lda #LOW(Pal1) sta PalPointerLow lda #HIGH(Pal1) sta PalPointerHigh jsr loadpal Its supposed to store the adress of "Pal1" into 2 bytes, who are going to get used in the next subroutine, but results in a error when assembled "Undefined symbol in operand field!" What am i...