blob: bb910a6d2a1a66488f204f7a9328289a16140753 [file] [log] [blame]
#include "layout.h"
// TODO(jesionowski): This program won't work until we break up TCM into
// multiple sections.
int main() {
// The end of the virtual window will be outside our allocated window.
int* i = (int*)(MMU_RANGE_START + MMU_WINDOW_SIZE - sizeof(int));
((void (*)())i)();
return 0;
}