Hi there, I am using the book "Commodore 64 Assembly Language Programming" by Derek Bush and Holmes. In the beginning of the book, the authors are using the Cassette buffer (*=828). I was wondering if using the C-128 and the Mega65, what would be the best way to write the example programs:
*=828
LDA #0
STA 1024
STA 55296
RTS
END
or
*=828
CLD
CLC
LDA #1
STA 1024
STA 55296
LDA #2
ADC 1024
STA 1026
STA 55298
RTS
END
I know the start address would be different for the C-128 and Mega65 and the screen and color addresses. Would like to use this book with either the C64C / U64, C-128 or the Mega65. Really like "Mega Assembler". Take care.