1
0
mirror of https://github.com/safiire/n65.git synced 2024-06-10 15:29:53 +00:00
n65/README.md

65 lines
2.6 KiB
Markdown
Raw Normal View History

# assembler6502 0.3
2015-02-18 03:05:37 +00:00
2015-02-19 02:40:00 +00:00
An NES assembler for the 6502 microprocessor written in Ruby
2015-02-18 03:05:37 +00:00
Usage: ./assembler\_6502.rb <infile.asm> -o outfile.nes
This is a pretty straightfoward assembler, that is currently set up
to produce iNES ROM formatted binaries from simple assembly listings.
It is good at knowing which addressing modes are and are not allowed for
each instruction, and contains some examples of correct syntax.
This assembler does not understand banks or mappers yet, and so having
more than one PROG section does not quite work yet. That is next
in line to be fixed.
2015-02-18 03:05:37 +00:00
It handles labels, and does a two pass assembly, first assembling
the byte codes, and then going back and filling in the proper addresses
where labels were used.
I have used this to compile some code for the NES, and it ran correctly
2015-02-19 02:40:00 +00:00
on FCEUX, got it to make some sounds, load tiles, sprites, and scrolling.
2015-02-18 03:05:37 +00:00
2015-02-19 02:44:17 +00:00
![Scrolling NES Demo](assembler_demo.png)
2015-02-18 03:05:37 +00:00
Some Todos:
- Understand how to deal with various mappers
- Understand how to create multiple banks
- Get an NSF file playing
- More unit tests for each instruction
2015-02-18 03:05:37 +00:00
- I may make this into a Rubygem
- Maybe I can put some better error messages.
2015-02-23 01:51:31 +00:00
- I would like to add some Macros to generate settings for
the PPU and APU, (values for locations like $2000 and $2001,
the $4000s, etc.)
2015-02-23 01:52:39 +00:00
- Support binary literals ie %10101010
2015-02-23 02:01:27 +00:00
- Anonymous Label support, (maybe, not sure if I like the idea)
- Give this project a better name.
- Create an interactive read eval compile loop?
2015-02-18 12:05:00 +00:00
Some new additions:
- Lower case mnemonics and hex digits
2015-02-19 02:40:00 +00:00
- Ported NES101 tutor to this assembler.
- Added msb and lsb byte selectors on address labels
2015-02-18 12:05:00 +00:00
- added .org directive
- added .dw directive
- added .bytes directive
- added .incbin directive
2015-02-19 02:40:00 +00:00
- added .ascii directive
2015-02-18 12:05:00 +00:00
- Invented my own iNES header directive that is JSON
- Split the project up into separate files per class
- Wrote some more unit tests
- Added OptionParser for commandline opts
- Tested a ROM with Sound output
- Tested a ROM that changes background color
I decided that during the first pass of assembly, I should just initialize
an entire 65535 byte virtual memory images, and write the instructions to
their correct places, and then after resolving symbols during the second pass,
I just clip out the Cartridge ROM area and iNES header at the end, works great
so far. Now that I know I will need to support various mappers, I still may
use this method, but will need to create multiple 65535 memory segments and use
banking to distinguish them before finally writing out the resulting ROM in
the correct order.
2015-02-18 12:05:00 +00:00