diff options
author | StapleButter <thetotalworm@gmail.com> | 2017-01-31 03:54:51 +0100 |
---|---|---|
committer | StapleButter <thetotalworm@gmail.com> | 2017-01-31 03:54:51 +0100 |
commit | 594286ee5de7f58e5eccd1bade725f3e92196cba (patch) | |
tree | 9e1fb1f20d5673b7a7327ad3ab0f343c885733fd /main.cpp | |
parent | 348bbd8cb8739c43c37f15538521819d5ef6ee44 (diff) |
* scheduler revamp, simpler design
* fix dumb bug of the year: ARM LDR opcodes would accidentally read twice, which fucked with things like the IPC FIFO.
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -39,9 +39,12 @@ LRESULT CALLBACK derpo(HWND window, UINT msg, WPARAM wparam, LPARAM lparam) printf("close\n"); { // 6006800 6008000 - FILE* f = fopen("vramABG.bin", "wb"); - for (int i = 0; i < 128; i++) - fwrite(GPU::VRAM_ABG[i], 16384, 1, f); + FILE* f = fopen("wram.bin", "wb"); + for (u32 i = 0x37F8000; i < 0x3808000; i+=4) + { + u32 blarg = NDS::ARM7Read32(i); + fwrite(&blarg, 4, 1, f); + } fclose(f); } PostQuitMessage(0); |