remove debug printing

This commit is contained in:
RSDuck 2019-08-25 13:09:03 +02:00
parent ea562d2fec
commit 5202c505ab
2 changed files with 0 additions and 6 deletions

View File

@ -385,15 +385,11 @@ CompiledBlock Compiler::CompileBlock(ARM* cpu, FetchedInstr instrs[], int instrs
// TODO: this is ugly as a whole, do better // TODO: this is ugly as a whole, do better
RegCache = RegisterCache<Compiler, X64Reg>(this, instrs, instrsCount); RegCache = RegisterCache<Compiler, X64Reg>(this, instrs, instrsCount);
printf("block start %d\n", Thumb);
for (int i = 0; i < instrsCount; i++) for (int i = 0; i < instrsCount; i++)
{ {
R15 += Thumb ? 2 : 4; R15 += Thumb ? 2 : 4;
CurInstr = instrs[i]; CurInstr = instrs[i];
printf("%x %d %d %d\n", CurInstr.Instr, CurInstr.SetFlags, CurInstr.Info.WriteFlags, CurInstr.Info.ReadFlags);
CompileFunc comp = Thumb CompileFunc comp = Thumb
? T_Comp[CurInstr.Info.Kind] ? T_Comp[CurInstr.Info.Kind]
: A_Comp[CurInstr.Info.Kind]; : A_Comp[CurInstr.Info.Kind];

View File

@ -2675,8 +2675,6 @@ void RecreateMainWindow(bool opengl)
int main(int argc, char** argv) int main(int argc, char** argv)
{ {
freopen("miauz.txt", "w", stdout);
srand(time(NULL)); srand(time(NULL));
printf("melonDS " MELONDS_VERSION "\n"); printf("melonDS " MELONDS_VERSION "\n");