My operating system for my DIY 65c02 8-bit computer https://quintern.xyz/de/posts/2021_6502
Go to file
2023-12-10 12:10:55 +01:00
programs fix setline 2023-12-09 23:32:43 +01:00
system fix import 2023-12-09 23:33:22 +01:00
util refactor with source+header 2023-12-08 22:56:35 +01:00
.gitignore refactor with source+header 2023-12-08 22:56:35 +01:00
details.md update 2023-12-08 00:13:50 +01:00
linker.conf refactor with source+header 2023-12-08 22:56:35 +01:00
main.s65 refactor with source+header 2023-12-08 22:56:35 +01:00
Makefile refactor with source+header 2023-12-08 22:56:35 +01:00
readme.md change to cc65 2023-11-11 12:14:02 +01:00
spicode.s65 wip char_to_hex 2023-12-10 12:10:55 +01:00
test.s65 refactor with source+header 2023-12-08 22:56:35 +01:00
utility.h65 refactor with source+header 2023-12-08 22:56:35 +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.