02-25-2015, 05:41 AM
(02-23-2015, 03:54 PM)fuirippu Wrote: I have a question/feature request:
Can the tool include line numbers, and the assembly instructions in its output?
With this, the output would be in 3 columns, and might look something like...
Code:00 # 00101101 # LDX $01,$11
01 # 00111000 # LDY $00,$10
.... and so on....
It would be possible yes, but my question would be why would you want this? The main purpose of the assembler is to provide code that can be easily parsed into something like an /autoprogram format. Also, you can already reference lines by inserting a tag (I haven't added this to the tutorial yet) such as '@address_name' on it's own line which means you can use that line as an address in other places.