Posted By
 Csabo on 2020-11-26 16:39:29
| Re: Cartridge creation tutorial
In most assemblers, * means the current location. JMP * is basically an infinite loop (for example, if you happen to compile "JMP *" to memory location $1234, it would become JMP $1234). "be" is likely a label - though I'm not sure where you took there from, so it might be something else. Label can be used in place of real addresses, e.g. later on an assembler will be able to change "BEQ be" into actual code. |