This commit is contained in:
2026-08-23 15:47:46 +02:00
commit 11c508bc24
18 changed files with 1350 additions and 0 deletions

14
boot.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef _BOOT_H
#define _BOOT_H
#include <stdint.h>
#define PIO_A_DATA 0x40
#define PIO_A_CTRL 0x42
void io_out(uint8_t addr, uint8_t data);
uint8_t io_in(uint8_t addr);
void delay_ms(uint16_t ms);
#endif