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