|
Open bus is an area of memory that isn't mapped anywhere, so all the chips in the system would ignore it. Reading it would simply return the last value that was on the bus (which would normally be some or all of the bits from last byte of the instruction that was just ran). $4018-$7FFF is where the open bus is.
But yeah, some of my first programs were mostly LDA #something / STA somewhere. That works for some stuff, but it's a lot more fun when you learn all the addressing modes, especially the indirect ones like: loop: lda (addr_lo),y sta $2007 iny bne loop inc addr_lo+1
|