Import empty project

This commit is contained in:
hkz 2025-07-15 20:51:44 +02:00
commit 384d9b3fd1
15 changed files with 496 additions and 0 deletions

19
src/monitor_subroutines.c Normal file
View file

@ -0,0 +1,19 @@
#include "monitor_subroutines.h"
void sbrt_prntax(uint8_t msb, uint8_t lsb) {
__asm(
" jsr 0xF941\n"
:
: "Ka" (msb), "Kx" (lsb)
:
);
}
void sbrt_prbl2(uint8_t count) {
__asm(
" jsr 0xF94A\n"
:
: "Kx" (count)
:
);
}