This post is to start documenting how my Orwell machine works. I’ll update it as things change.
Orwell is a home made 6502 based machine. It has 16K of RAM, 32K of ROM and a 6522 VIA and a 6551 ACIA for IO as well as an additional 8 bit writable latch with debugging LEDs attached. Video output is via Grant Searle’s ATMega based video board.
Hardware
RAM is provided by a HM62256 32K SRAM with only the first 16K addressable. ROM is a 27C256 EPROM. The additional IO port is a 74HC573 octal transparent latch.
The keyboard is an old surplus Ti99/4 keyboard which is scanned using the 6522 VIA. The same via also drives the video board.
Simple sounds can produced by the VIA using the timer on PB7. Values are poked into the Timer 1 low and high latches directly.
The 6551 ACIA is used for serial communications running at 19200:8,N,1 with RTS/CTS hardware flow control.
RAM is addressed from $0000 $3FFF, IO is from $4000 to $7FFF and ROM from $8000 to $FFFF.
The detailed memory map is as follows:
$FFFF – $FFFE: ROM (IRQ)
$FFFD – $FFFC: ROM (Reset vector)
$FFFB – $FFFA: ROM (NMI)
$FFF0 – $8000: ROM (32K)
$6000: 8 bit latchable IO port (with LEDs)
$5003 – $5000: 5622 VIA
$4803 – $4800: 6551 ACIA
$3FFF – $0000: RAM (16K)
Software
Orwell is running a custom built version of Microsoft BASIC from 1978. I started with the Ohio Scientific code and have modified it to suit the Orwell hardware, adding commands as necessary.
Commands added:
CLS: Clear the screen and position cursor home.
inkey$(x): Returns the currently pressed key or null (not empty string).
E.g. to test for a keypress use: if ASC(INKEY$(0) <> 0 then …key is pressed…
LOAD: Silent load from serial port.
ECHOLOAD: Load from serial port and echo to screen.
Poking locations:
The IO port with the 8 LEDS can be poked at: 24576 ($6000)
Sound can be produced by poking values into: 20484 ($5004) and 20485 ($5005)