fixed infinite loop when not branching

This commit is contained in:
inixyz
2023-10-18 00:22:17 +03:00
parent b79efd608a
commit c47cf4cf01
7 changed files with 56 additions and 31 deletions

10
tests/1.c Normal file
View File

@@ -0,0 +1,10 @@
#include <stdint.h>
int main(){
uint8_t* ptr = 0x800000F0;
for(int i = 0; i < 16; i++){
*ptr = i;
ptr++;
}
}