1
0
mirror of https://github.com/fachat/xa65.git synced 2024-06-08 23:29:30 +00:00

update TODO, -? for file65

This commit is contained in:
Andre Fachat 2023-11-01 12:11:01 +01:00
parent c250f59d60
commit 4e90af6e29
2 changed files with 5 additions and 7 deletions

10
xa/TODO
View File

@ -1,20 +1,18 @@
o nm65 that prints labels from o65 files
o `-L' option for ldo65, such that globals can be suppressed,
but KERNEL can be kept
o inc a -> ina, dec a -> dea (right now uses bare inc and dec)
o VICE label file support
o Smarter -X that can cope with non-block-aligned segment sizes
o Smarter -X that can cope with non-block-aligned segment sizes (in reloc65)
o The listing feature is not bug-free yet:
- ca65 and other assembler compatibility pseudo-opcodes will be
listed as xa specific ones, not the original in the source
E.g. a CA65 ".scope" will appear as ".(" in the listing
- The assembler has no constant handling, so constants are
- The assembler has no pre-processor handling, so pp constants are
resolved at parse time. Thus they appear as their value
in the listing. Only situation now is ".listbytes unlimited",
in the listing.
- One situation is ".listbytes unlimited",
which will show as ".listbytes 0" in the listing

View File

@ -81,7 +81,7 @@ int main(int argc, char *argv[]) {
i = 1;
if (strstr(argv[i], "--help")) {
if (strstr(argv[i], "--help") || strstr(argv[i], "-?")) {
usage(stdout);
exit(0);
}