1
0
Fork 0
mirror of https://github.com/pnx/m16vm synced 2026-06-16 03:44:55 +02:00

vm/mm.c: reduce default memory size.

This commit is contained in:
Henrik Hautakoski 2023-11-25 13:58:21 +01:00
parent 8c119a983d
commit 3f5bbdb604

View file

@ -22,8 +22,8 @@
#include "mm.h" #include "mm.h"
#ifndef MEM_SIZE #ifndef MEM_SIZE
/* Set a default memory size. (2^16) */ /* Set a default memory size. (2^8) */
#define MEM_SIZE 65536 #define MEM_SIZE 256
#endif #endif
// Get a WORD aligned (16-bit) address. // Get a WORD aligned (16-bit) address.