Skip to content

emeb/ulx3s_6502

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ulx3s_6502

Simple 6502 system on a ULX3S FPGA board

prerequisites

To build this you will need the following FPGA tools

Additionally, you'll need the ujprog JTAG programming tool for the ULX3S board. Note that getting this tool running properly can be tricky - I had to build it from source, making changes to the Makefile and the source code in order for it to build, run and recognize my ULX3S board.

You will also need the following 6502 tools:

Building

git clone https://github.com/emeb/ulx3s_6502
cd ulx3s_6502
git submodule update --init
cd trellis
make

Running

Make sure you've properly set up udev rules for the ULX3S, then plug it in. Then load the previously built bitstream.

make prog

The 8 ULX3S LEDs should begin flashing a binary sequence. If you'd like to try the serial port then that can be done with the command

make prog_term

This will load the bitstream and immediately start a 9600 bps terminal session where you can type and see characters echoed by the 6502. To exit the terminal session just type "~."

CPU coding

By default the build system fills the ROM with code based on the C and assembly source in the cc65 directory. If you are modifying only the C or assembly code then you can do a partial rebuild that changes only the ROM contents which will complete somewhat more quickly using the following command:

make recode

within the icestorm directory.

Simulating

Simulation is supported and requires the following prerequisites:

To simulate, use the following commands

cd icarus
make
make wave

This will build the simulation executable, run it and then view the output.

Thanks

Thanks to the developers of all the tools used for this, as well as the authors of the IP core I snagged for the 6502. I've added that as a submodule so you'll know where to get it and who to give credit to.

About

Simple 6502 system on a ULX3S FPGA board

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published