fyi: as i couldn't find a windows port of the xa/dxa package, I've first tried that under freebsd (worked great!) - now I've created a win32 port:
https://github.com/Dennis1000/xa65-win32
Search found 6 matches
- Thu Mar 23, 2017 2:41 pm
- Forum: Programming
- Topic: Looking for a disassembler and suitable assembler
- Replies: 24
- Views: 3729
- Mon Mar 13, 2017 4:17 pm
- Forum: Programming
- Topic: Looking for a disassembler and suitable assembler
- Replies: 24
- Views: 3729
Re: Looking for a disassembler and suitable assembler
sorry, I was so frustated because a trivial task wasted that much time.
Just tried dxa/xa on freebsd:
dxa65 -g a000 basic.901226-01.bin >basic.src
and
xa65 basic.src
puts the starting address ($a000) at the first 2 bytes, can't find how to omit them ;-)
after running a
dd bs=2 skip=1 if=a ...
Just tried dxa/xa on freebsd:
dxa65 -g a000 basic.901226-01.bin >basic.src
and
xa65 basic.src
puts the starting address ($a000) at the first 2 bytes, can't find how to omit them ;-)
after running a
dd bs=2 skip=1 if=a ...
- Mon Mar 13, 2017 8:01 am
- Forum: Programming
- Topic: Looking for a disassembler and suitable assembler
- Replies: 24
- Views: 3729
Re: Looking for a disassembler and suitable assembler
The binary will probably include data too, and that won't disassemble into instructions.
I don't care about those data - if the disassembler can't produce code it should just print a "db 0x55" or whatever (that's one problem: some print "db", sometimes with "," sometimes only spaces allowed, some ...
I don't care about those data - if the disassembler can't produce code it should just print a "db 0x55" or whatever (that's one problem: some print "db", sometimes with "," sometimes only spaces allowed, some ...
- Fri Mar 10, 2017 2:10 pm
- Forum: Programming
- Topic: Looking for a disassembler and suitable assembler
- Replies: 24
- Views: 3729
Looking for a disassembler and suitable assembler
after trying endless hours different asm/dasmx/cc, I finally give up and ask you for help:
I have a 6502 binary (for testing purposes I'm using the cbm basic v2.bin, since its disassembly is very well documented) and want to run a disassembler
which output is then fed into an assembler and it should ...
I have a 6502 binary (for testing purposes I'm using the cbm basic v2.bin, since its disassembly is very well documented) and want to run a disassembler
which output is then fed into an assembler and it should ...
- Mon Mar 06, 2017 12:20 pm
- Forum: Programming
- Topic: Functional Test for the NMOS 6502 - request for verification
- Replies: 202
- Views: 130193
Re: Functional Test for the NMOS 6502 - request for verifica
thank you both for your suggestions. Using Bruce Clarks test ($12-$21=$91 SBC decimal) I've managed to find a small typo. Now the test completes! I still recommend providing a complete trace log of the test suite, it surely helps to find those bugs far easier! Thanks Klaus again for your effort ...
- Sun Mar 05, 2017 11:59 am
- Forum: Programming
- Topic: Functional Test for the NMOS 6502 - request for verification
- Replies: 202
- Views: 130193
Re: Functional Test for the NMOS 6502 - request for verifica
Thanks Klaus for your testing suite. I'm currently stuck on my 6502 emulator, and can't find out what's wrong. It runs till test 42 ($3249) and halts on ($335A), using the the functional test bin found in the NESkell https://github.com/blitzcode/neskell/tree/master/src/tests/6502_functional_tests ...