Added tests for warnings or errors that now have notifications.

This commit is contained in:
Kugel Fuhr
2025-07-14 12:59:52 +02:00
parent 170ddc6e33
commit 4120f35276
13 changed files with 51 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
MEMORY {
ZP: file = "", start = $80, size = $001F;
MAIN: file = %O, start = %S, size = $100;
}
SEGMENTS {
ZEROPAGE: load = ZP, type = zp;
CODE: load = MAIN, type = rw;
RODATA: load = MAIN, type = rw;
DATA: load = MAIN, type = rw;
BSS: load = MAIN, type = bss;
}