My operating system for my DIY 65c02 8-bit computer https://quintern.xyz/de/posts/2021_6502
Go to file
2023-12-08 00:13:29 +01:00
programs add spi menu 2023-12-08 00:13:02 +01:00
system fix spi init 2023-12-08 00:13:10 +01:00
util add div by pow(2) 2023-12-08 00:13:29 +01:00
.gitignore lots of fixes 2023-10-28 03:48:27 +02:00
details.md change conventions 2023-11-11 12:14:25 +01:00
linker.conf add spi code space 2023-11-13 19:14:39 +01:00
main.s65 rename home 2023-12-08 00:02:22 +01:00
Makefile add default 2023-12-08 00:01:30 +01:00
readme.md change to cc65 2023-11-11 12:14:02 +01:00
test.s65 cleanup 2023-10-27 16:50:58 +02:00
utility.h65 add genlabel 2023-11-09 12:09:06 +01:00

8-bit Breadboard Computer with W65C02S Processor

This repo contains the assembly code for my 6502-project.

The assembler used for this project is the excellent ca65. After assembling it, the binary is loaded onto the EEPROM using my eeprom.py script on a Raspberry Pi 4B.

Operating System

... is probably a far stretch, since it is just the programs I wrote pieced together. My "os" consists of these functionalities:

  • Main Menu:
    • Printer: Prints the characters you press on the keypad to the lcd.
    • Temperature: Shows the temperature using a dht sensor. Work in progress, this does not work yet
    • Text 1: Show a 4x16 character text (defined at compile time)
    • Text 2: Show a 4x16 character text (defined at compile time)
  • Ringbuffer for pressed keys.

It's not much, but it's honest work.