My operating system for my DIY 65c02 8-bit computer https://quintern.xyz/de/posts/2021_6502
Go to file
2024-01-03 13:08:04 +01:00
programs use additional buffer size var 2023-12-31 01:58:47 +01:00
system wip: keyboard send 2024-01-02 23:37:07 +01:00
util fix do all 8 bits 2024-01-03 13:08:04 +01:00
.gitignore refactor with source+header 2023-12-08 22:56:35 +01:00
details.md split header-source 2023-12-16 02:41:19 +01:00
linker.conf define spi mem 2023-12-31 01:56:02 +01:00
main.s65 wip: keyboard send 2024-01-02 23:37:07 +01:00
Makefile wip: keyboard 2023-12-20 12:27:54 +01:00
readme.md change to cc65 2023-11-11 12:14:02 +01:00
spicode.s65 wip: keyboard send 2024-01-02 23:37:07 +01:00
test.s65 wip keyboard 2023-12-31 01:59:06 +01:00
utility.h65 fix JsrIndirect 2024-01-02 23:36:41 +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.