verilog-apple-one/README.md

111 lines
5.5 KiB
Markdown
Raw Permalink Normal View History

![Apple One](media/apple-logo.png)
2018-01-01 14:28:31 +00:00
2018-02-11 22:44:04 +00:00
This is a basic implementation of the original Apple 1 in Verilog. It can run the Apple 1 WozMon and Integer Basic via the serial or VGA 640x480 video with PS/2 keyboard standalone. This makes this a very compact little set up. So far fully tested and supported boards are:
2018-04-03 12:44:33 +00:00
- [iCE40HX8K-B-EVN breakout](http://www.latticesemi.com/Products/DevelopmentBoardsAndKits/iCE40HX8KBreakoutBoard.aspx)
- [Terasic DE0](http://www.terasic.com.tw/cgi-bin/page/archive.pl?Language=English&No=364)
- [Digilent Spartan-3E Starter Board](https://store.digilentinc.com/spartan-3e-starter-board-limited-time/)
Contributor supported boards (YMMV):
- [Blackice II](https://www.tindie.com/products/Folknology/blackice-ii/)
- [icoBoard](http://icoboard.org/)
2018-04-04 01:15:15 +00:00
- [Olimex iCE40HX8K with ICE40-IO](https://www.olimex.com/Products/FPGA/iCE40/iCE40HX8K-EVB/open-source-hardware)
2024-04-29 02:31:37 +00:00
- TinyFPGA B2
- Upduino
2018-01-01 13:56:57 +00:00
2018-02-11 22:46:53 +00:00
<p align="center">
<img src="media/apple-one.png" alt="Apple One Running">
</p>
2018-01-12 03:42:42 +00:00
2024-04-29 02:31:37 +00:00
This project borrows heavily from the *awesome* work of Andrew Holme and his ["Pool"](http://www.aholme.co.uk/6502/Main.htm) project and [Arlet Otten's](https://github.com/Arlet/verilog-6502) tiny 6502 core. Also many special thanks to [sbprojects.net](https://www.sbprojects.net/projects/apple1/index.php) for the wealth of information I gleaned from there.
2018-01-01 13:56:57 +00:00
2018-04-03 12:44:33 +00:00
## Memory Map
2018-01-01 13:56:57 +00:00
2018-02-11 22:44:04 +00:00
The memory map is currently set up to have:
2018-01-12 03:32:42 +00:00
Start | End | Description
----- | --- | -----------
0x0000 | 0x1FFF | 8KB of block RAM for system
0xE000 | 0xEFFF | 4KB of block RAM for basic ROM
2018-05-09 23:02:33 +00:00
0xFF00 | 0xFFFF | 256B of block RAM for WozMon ROM
2018-04-03 12:44:33 +00:00
You can swap out the Basic ROM to get more RAM if you need the space, this can be achieved easily with only minor modifications to the top file.
2018-01-01 13:56:57 +00:00
2018-04-03 12:44:33 +00:00
## Building
2018-01-12 03:32:42 +00:00
2018-02-11 22:44:04 +00:00
Each supported board has a directory in `boards`. This directory has a structure where each board can have multiple build environments (eg. yosys, icecube2, quartus etc).
2018-01-12 03:32:42 +00:00
2018-04-03 12:44:33 +00:00
Each board has specific instructions that will explain further the requirements of each board and how to build for it, but basically all should support the following.
2018-02-11 22:44:04 +00:00
To build for your board you just need to open the project or use the `Makefile` that's compatible with your board.
eg.
```
$ cd boards/ice40hx8k-b-evn/yosys/
$ make
```
2018-01-12 03:32:42 +00:00
2018-04-04 01:17:25 +00:00
### Board READMEs
2018-04-03 12:44:33 +00:00
- [Blackice II](boards/blackice2/README.md)
2024-04-29 02:31:37 +00:00
- [iCE40HX8K-B-EVN breakout](boards/ice40hx8k-b-evn/README.md)
- [iCE40UpDEvBoard](boards/ice40updevboard/README.md)
- [icoBoard](boards/icoboard)
2018-04-03 12:44:33 +00:00
- [Olimex iCE40HX8K with ICE40-IO](boards/olimex_ice40hx8k_evb_ice40-io/README.md)
2024-04-29 02:31:37 +00:00
- [Digilent Spartan-3E Starter Board](boards/spartan3e_starterkit/README.md)
- [Terasic DE0](boards/terasic_de0/README.md)
2018-04-03 12:44:33 +00:00
- [TinyFPGA B2](boards/tinyfpga_b2/README.md)
- [Upduino](boards/upduino/README.md)
## The BACKSPACE key and how to delete typos
The Apple 1 didn't have a typical "backspace" key as we are use to today, due to the way the video display worked it couldn't move the cursor backward to erase characters. So instead it used a "rubout" character, which is the underscore character (_). This character signifies that the input buffer has been moved backwards one character (eg. `PRN_INT` would be received by the Apple 1 as `PRINT`).
2018-04-03 12:44:33 +00:00
It takes a little getting used to but you'll soon get the hang of it.
## The Apple 1 only understands UPPERCASE characters
If you're using the PS/2 input you don't need to be worried about this, as we automatically UPPERCASE all typed characters so WozMon can understand what you are typing.
However if you are using the UART and a serial terminal you will need to remember to turn on your CAPSLOCK, otherwise nothing will respond as you might expect.
2018-04-03 12:44:33 +00:00
## Serial Setup
2018-04-04 01:17:25 +00:00
Depending on the board you can use serial to communicate with the Apple 1, some boards require a toggle to be set to select between PS/2 input and UART input. The UART by default will be set to 115200 (8/N/1).
2018-04-03 12:44:33 +00:00
A very basic hardware flow control is implemented. You should turn on CTS support as this will allow you to cut and paste code into the Woz Mon without the Apple 1 missing any bytes.
## VGA / PS/2 Setup
2018-01-01 14:04:35 +00:00
2018-04-03 12:44:33 +00:00
Most boards support PS/2 input and VGA output. This is the most support method, however all output is replicated to the UART (if available) and the PS/2 keyboard input can be replaced with the UART out if the "toggle" mode buttons is selected.
2018-04-04 01:17:25 +00:00
Unlike the original Apple 1 this implementation can (depending on board you are using and it's support) change the foreground and background colours of the VGA output, as well as differnet scanline modes for the font.
2018-04-03 12:44:33 +00:00
These controls are mapped to memory locations you can tweak using WozMon and are reset back to defaults when the system is reset.
2018-04-03 13:06:11 +00:00
| Register | Function | Value | Description |
| --- | --- | --- | --- |
| 0xC000 | Font | 00 | Default
2018-04-03 13:07:39 +00:00
| | | 01 | Vertical scanlines
| | | 02 | Horizontal scanlines
| | | 03 | Dot mode
2018-04-03 13:06:11 +00:00
| 0xC001 | Foreground | 00 | Black
2018-04-03 13:07:39 +00:00
| | | 01 | Blue
| | | 02 | Green
| | | 03 | Cyan
| | | 04 | Red
| | | 05 | Magenta
| | | 06 | Yellow
2018-04-04 01:15:15 +00:00
| | | 07 | White
2018-04-03 13:06:11 +00:00
| 0xC002 | Background | 00 | Black
2018-04-03 13:07:39 +00:00
| | | 01 | Blue
| | | 02 | Green
| | | 03 | Cyan
| | | 04 | Red
| | | 05 | Magenta
| | | 06 | Yellow
2018-04-04 01:15:15 +00:00
| | | 07 | White
2018-01-01 14:04:35 +00:00
2018-04-03 12:44:33 +00:00
## Helping
2018-01-01 14:04:35 +00:00
2024-04-29 02:31:37 +00:00
All PRs and suggestions happily accepted! Please, any support us most welcome. It would be good to have this Apple 1 as feature complete as possible with the real Apple 1. I'd like to implement the cassette interface with the basic electronics to talk to the headphone/mic jack of a mobile phone to upload and download recordings as a means to save programs.
2018-01-01 14:04:35 +00:00
2018-04-03 12:44:33 +00:00
But yes, help happily accepted!