Merge pull request #53 from kylophone/fix_typo

Fix typo, file permissons
This commit is contained in:
Lior Halphon 2018-03-29 10:56:54 +03:00 committed by GitHub
commit b89c93a624
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 1 additions and 1 deletions

0
Core/apu.c Executable file → Normal file
View File

0
Core/display.c Executable file → Normal file
View File

0
Core/gb.c Executable file → Normal file
View File

0
Core/symbol_hash.c Executable file → Normal file
View File

View File

@ -6,7 +6,7 @@
typedef void GB_opcode_t(GB_gameboy_t *gb, uint8_t opcode);
/*
About memroy timings:
About memory timings:
Each M-cycle consists of 4 T-cycles. Every time the CPU accesses the memory it happens on the 1st T-cycle of an
M-cycle. During that cycle, other things may happen, such the PPU drawing to the screen. Since we can't really run