@@ -0,0 +1,14 @@
#include <stdint.h>
#include <stdio.h>
#include <z80.h>
uint8_t memory[65536];
int main(int argc, char *argv[])
{
FILE* f = fopen("48.rom", "rb");
fread(memory, 1024, 48, f);
fclose(f);
set_memory(memory);
}
The note is not visible to the blocked user.