bf-romulator

所属分类:嵌入式/单片机/硬件编程
开发工具:C++
文件大小:0KB
下载次数:0
上传日期:2022-10-10 06:30:21
上 传 者sh-1993
说明:  Romulator-6502 CPU系统的RAM ROM更换和调试,
(Romulator - RAM ROM replacement and debug for 6502 CPU systems,)

文件列表:
Makefile (10343, 2023-12-23)
ROMULATOR_STANDALONE.md (9933, 2023-12-23)
bf-shared/ (0, 2023-12-23)
cc65/ (0, 2023-12-23)
config/ (0, 2023-12-23)
config/enable_table_default.csv (2468, 2023-12-23)
config/enable_table_default_z80.csv (539, 2023-12-23)
config/enable_table_pet_2001_8.csv (3112, 2023-12-23)
config/enable_table_pet_and_apple_ii_plus.csv (550, 2023-12-23)
config/enable_table_vic20.csv (3546, 2023-12-23)
config/memory_set_default.csv (2373, 2023-12-23)
config/memory_set_default_z80.csv (155, 2023-12-23)
config/memory_set_pet_2001_8.csv (3183, 2023-12-23)
config/memory_set_sjg_edit.csv (1242, 2023-12-23)
config/memory_set_vic20.csv (884, 2023-12-23)
config/memory_set_with_apple_ii_plus.csv (1124, 2023-12-23)
images/ (0, 2023-12-23)
images/ribbon_cable_1.jpeg (82307, 2023-12-23)
images/ribbon_cable_2.jpeg (93769, 2023-12-23)
images/romulator-rpi-connection-2.jpeg (119888, 2023-12-23)
images/romulator-rpi-connection.jpg (201170, 2023-12-23)
images/romulator_standalone_connected.jpeg (104524, 2023-12-23)
images/standalone_bottom.jpeg (128471, 2023-12-23)
images/standalone_top.jpeg (155661, 2023-12-23)
pcb/ (0, 2023-12-23)
pcb/fpga_5v_pin_adapter/ (0, 2023-12-23)
pcb/fpga_5v_pin_adapter/fpga_5v_pin_adapter.kicad_pcb (14757, 2023-12-23)
pcb/fpga_5v_pin_adapter/fpga_5v_pin_adapter.pro (688, 2023-12-23)
pcb/fpga_5v_pin_adapter/fpga_5v_pin_adapter.sch (1421, 2023-12-23)
pcb/romulator-programmer/ (0, 2023-12-23)
pcb/romulator-programmer/romulator-programmer-interface/ (0, 2023-12-23)
pcb/romulator-programmer/romulator-programmer-interface/romulator-programmer-interface.kicad_pcb (32823, 2023-12-23)
pcb/romulator-programmer/romulator-programmer-interface/romulator-programmer-interface.pro (688, 2023-12-23)
pcb/romulator-programmer/romulator-programmer-interface/romulator-programmer-interface.sch (4583, 2023-12-23)
programmer/ (0, 2023-12-23)
programmer/crc32.cpp (3491, 2023-12-23)
programmer/make_test_vram.cpp (189, 2023-12-23)
... ...

# bf-romulator Romulator - RAM/ROM replacement and debug for 6502 and Z80 CPU systems romulator - verilog code to implement ROMulator RAM/ROM replacement programmer - programmer and console application for updating ROMulator, and debug tools - C++ tools for building firmware images for ROMulator ## About The ROMulator is a RAM/ROM replacement device for 6502 and Z80 systems, with programmable memory maps and debug functionality which allows you to halt a running CPU and read from or write to memory. See https://bitfixer.com/romulator for more information. This Readme mostly covers the 6502 version for now, more documentation coming soon for Z80. ## Installation To use the ROMulator, first remove the 6502 CPU from its socket on the PET (or other computer)'s motherboard. **Note the orientation of the notch on the 6502 chip in the socket.** Insert the 6502 chip into the 40-pin socket on the ROMulator board. Make sure the notch on the chip is aligned with the notch on the ROMulator socket. Then, take the ROMulator board, and using the pins on the underside of the board, insert it into the 6502 socket on the motherboard. **Make sure the notch on the 6502 chip is pointing in its original direction.** If the ROMulator is inserted backwards, this may damage the ROMulator board since 5v will be presented where it shouldn't be. Just make sure to double check: - Original orientation of 6502 - 6502 chip notch should match with notch in ROMulator socket - When inserting ROMulator into 6502 socket, 6502 chip should be in its original orientation ## Default Switch Settings The ROMulator supports up to 32 memory maps. The default memory maps shipped with the ROMulator are currently mostly related to the Commodore PET, but you can add any maps you want via the programming interface. Over time more configurations for common 6502 computers will be added. Please note that these settings reflect the head commit of the repository, and may differ from the default settings on your ROMulator depending on when it was programmed. Building the latest version with `make program` after a `git pull` will generate the settings as described. The default switch settings are as follows: |Set Index |Setting |Switch 1 |Switch 2 |Switch 3 |Switch 4 | |-----------|-----------------------------------------------|-----------|-----------|-----------|-----------| |0 |BASIC 2, NON-CRTC, Business Kbd (i.e. 2001) |Off |Off |Off |Off | |1 |BASIC 4, NON-CRTC (i.e. 2001) |On |Off |Off |Off | |2 |BASIC 4, CRTC, 80C (i.e. 8032) |Off |On |Off |Off | |3 |BASIC 4, CRTC, 40C (i.e. 4032,4016) |On |On |Off |Off | |4 |BASIC 4, PET 4032 60Hz |Off |Off |On |Off | |5 |BASIC 2, NON-CRTC, Normal Kbd (i.e. 2001) |On |Off |On |Off | |6 |BASIC 4, PET 4032 50Hz |Off |On |On |Off | |7 |BASIC 4, PET 4016 60Hz |On |On |On |Off | |8 |Apple II plus |Off |Off |Off |On | |9 |BASIC 1, PET 2001-8 |On |Off |Off |On | |10 |VIC-20 PAL |Off |On |Off |On | |11 |VIC-20 NTSC |On |On |Off |On | |12 |NOP Generator |Off |Off |On |On | |13 |PETTESTER |On |Off |On |On | |14 |PET Low RAM Test |Off |On |On |On | |15 |PET RAM/ROM/VRAM Test |On |On |On |On | The memory maps are defined in [config/memory_set_default.csv](https://github.com/bitfixer/bf-romulator/blob/master/config/memory_set_default.csv). This file indicates which ROMs are located at which memory address. ## Adding Configurations for New 6502 Machines This topic is big enough to have its own readme, and it is located here:\ [config/README.md](https://github.com/bitfixer/bf-romulator/blob/master/config/README.md) ## Program / Debug Programming and Debugging with the ROMulator can be done in one of two ways: - using a Raspberry Pi connected to the ROMulator's 10-pin header, or - using a standalone programmer consisting of a D1 Mini Board (dev board for ESP12 wifi microcontroller module) and an interface board for connecting to the ROMulator. This method allows uploading new firmware over a wifi network as well as a direct connection to a Win/Linux/Mac using usb. ### Program / Debug with Standalone Programmer over WiFi or USB Information on programming and debugging using the standalone programmer can be found here:\ [ROMULATOR_STANDALONE.md](https://github.com/bitfixer/bf-romulator/blob/master/ROMULATOR_STANDALONE.md) ### Program / Debug with Raspberry Pi Programming or Debug functionality of the ROMulator uses a Raspberry Pi using a soft SPI implementation. You can use the optional RPI ROMulator programming board, or directly connect the following RPI physical pins to the corresponding pins on the 10-pin header on the ROMulator FPGA board: |RPI |FPGA Hdr|FPGA Hdr |RPI | |--------|--------|---------|----| |19 |1 (MOSI)|2 (3.3v) |17 | |24 |3 (CS) |4 (DBG) |36 | |22 |5 (RST) |6 (CDONE)|11 | |23 |7 (SCK) |8 |NC | |21 |9 (MISO)|10 (GND) |34 | If you are only programming and not running the debug client, DBG and CDONE are optional. Take a look at this wiring diagram for a visual aid: ![programming/debug diagram](https://github.com/bitfixer/bf-romulator/blob/master//schematics/programming_wiring.png "programming/debug diagram") # ROMulator programming board The optional RPI ROMulator programming board is just a breakout board for SPI and UART on the Pi which brings SPI0 and SPI1 pins out to separate headers, as well as a UART header. The ROMulator only uses the SPI0 header. If you received a kit for this board, here are a few quick notes on the assembly. 1. Solder header pins onto the TOP of the board in the section marked 'SPI0'. 2. Solder a 2-pin header onto the header section directly adjacent to SPI0. 3. Solder the 2x20 socket onto the BOTTOM of the board. 4. Connect the jumper onto the 2-pin header for programming. Remove for debug. 5. When attaching the board to the raspberry pi, the headers face away from the body of the raspberry pi. Depending on how the connectors are attached to the ribbon cable, it may be connected in one of two ways. Just make sure there is no twist in the cable. See these images for reference:
If your cable looks like this: Connect it like this.
Or,
If your cable looks like this: Connect it like this.
Please follow this procedure to enter debug mode on the romulator and read the contents of a running CPU. 1. run ```make bin/console``` from bf-romulator directory 2. run ```make debug``` to set appropriate pin directions on the pi. Specifically, this sets the DBG line to 1 to allow the ROMulator to start and not be stuck in a halt state, and sets the RST line to an input to avoid holding the fpga in reset. 3. If you are using the optional RPI programming board, remove the programming jumper. 4. run ```bin/console -r > output.bin``` to halt the cpu and read the full memory map into a file called output.bin. ### Installation To install the ROMulator software on a Raspberry PI for programming or debug, download the script [setup.sh](https://github.com/bitfixer/bf-romulator/blob/master/https://raw.githubusercontent.com/bitfixer/bf-romulator/master/setup.sh) onto your Pi and execute from your home directory. This will install the prequisites and fetch the latest version of the code in this repo. The one-liner for this on the command line is:\ ```wget -O - https://raw.githubusercontent.com/bitfixer/bf-romulator/master/setup.sh | sudo bash``` ### Programming To program a new firmware onto the ROMulator, run\ ```make program```\ from the ~/bf-romulator directory. Note that you will need all of the roms present in order to complete the build.\ This means that every unique rom specified in [config/memory_set_default.csv](https://github.com/bitfixer/bf-romulator/blob/master/config/memory_set_default.csv) to be present in the bf-romulator/roms directory.\ For convenience if you are downloading ROM images from a single source, there is a script which will do this for you.\ If you were downloading every rom with the base url of http://bitfixer.com, you would run the command:\ ```BASEURL=http://bitfixer.com make fetch_roms```\ This downloads every unique rom specified in [config/memory_set_default.csv](https://github.com/bitfixer/bf-romulator/blob/master/config/memory_set_default.csv) to the roms directory. ## Programming Custom Firmware If you just want to program a custom .bin file (if I send you one, for example) the procedure is a bit simpler. Before the first time doing this run\ ```make bin/programmer_spi```\ from the ~/bf-romulator directory. Then, copy the custom .bin file somewhere on your raspberry pi, and run\ ```bin/programmer_spi < customfirmware.bin```\ from the ~/bf-romulator directory, replacing customfirmware.bin with the actual path of that file. ## Virtual Display A recent feature added to the ROMulator is the ability to create a virtual external display, using a connected Raspberry Pi as a webserver. By pointing a browser to the pi server, you will be able to 'see' the contents of video ram in realtime rendered into bitmap images.\ Currently, only the PET 2001 is supported, but other 6502 machines with memory-mapped graphics will be added soon.\ To use the virtual display feature on a PET 2001, connect the ROMulator to the 6502 socket on the pet, and connect the Pi via the interface board with the programming jumper OFF. For now only setting 1 (Sw 1 ON, rest OFF) is supported, which is BASIC 4.\ Power up the PET as usual, and the ROMulator LED should blink on for about one second. Then from the console on your Pi, from the bf-romulator directory, run:\ ```make webserver```\ Then open a browser on another computer on the same network as the Pi, and navigate to the pi's server, like so:\ ```http://raspberrypi.local:10000/canvas.html```\ Please note that while the pi will usually show up as raspberrypi.local, this is not always the case and you may need to know the actual local IP. At this point you should be able to enjoy a roughly 15-20 FPS PET 2001 display in your browser!

近期下载者

相关文件


收藏者