chitselb / pettil

6502 Forth-83 dialect for the Commodore PET 2001
http://pettil.tumblr.com
34 stars 3 forks source link

fix CFA, so symbol table can update code field after the fact #51

Closed chitselb closed 9 years ago

chitselb commented 9 years ago

Right now it puts the alignment NOP(s) after the CFA, needs to be before. e.g.

this: $17FC nop $17FD nop foosecondary $17FE jsr enter

not this: foosecondary $17FC nop $17FD nop $17FE jsr enter

chitselb commented 9 years ago

fixed