blob: cc69c183cf0417d60d88a75d4a2c3f524b09b087 [file] [log] [blame]
#include "layout.h"
// TODO(jesionowski): This program won't work until we change the way the heap
// is allocated: currently the remaning memory after data is consumed by .heap.
int main() {
int* i = (int*)(MMU_RANGE_START + 0x4000 - sizeof(int));
*i = 0;
return 0;
}