Add test for reading code which is too large

This commit is contained in:
Toby Jaffey 2025-12-13 18:02:43 +00:00
parent f2c903cfb6
commit 92913ab478
5 changed files with 36 additions and 1 deletions

7
test/badcode/rom/rom.c Normal file
View file

@ -0,0 +1,7 @@
#include "uvm32_target.h"
void main(void) {
void *p = NULL;
println(p);
}