-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README.md with table showing implemented instructions
- Loading branch information
1 parent
af4ca1b
commit 752db1a
Showing
1 changed file
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,48 @@ | ||
# Game Boy Emulator | ||
# Game Boy Emulator | ||
Trying to emulate gameboy for understanding how a CPU works in general | ||
|
||
![image](https://github.com/subratkatiyar/GameBoy_Emulator/assets/43543908/f4d92bc7-c155-47bb-a1c6-e7aa5f6d1dec) | ||
|
||
## Instructions Set | ||
|
||
UnPrefixed | x0 | x1 | x2 | x3 | x4 | x5 | x6 | x7 | x8 | x9 | xA | xB | xC | xD | xE | xF | ||
---------- | ------------------ | -- | ------------------ | ------------------ | ------------------ | ------------------ | -- | -- | -- | -- | -- | -- | ------------------ | -- | -- | ------------------ | ||
0x | :white_check_mark: | | | | :white_check_mark: | :white_check_mark: | | | | | | | :white_check_mark: | ||
1x | :white_check_mark: | | | | | | | | | | | | | | | ||
2x | :white_check_mark: | | | | | | | | | | | | | | | ||
3x | | | :white_check_mark: | | | | | | | | | | | | | ||
4x | | | | | | | | | | | | | | | | | ||
5x | | | | | | | | | | | | | | | | | ||
6x | | | | | | | | | | | | | | | | | ||
7x | | | | | | | | | | | | | | | | | ||
8x | | | | | | | | | | | | | | | | | ||
9x | | | | | | | | | | | | | | | | | ||
Ax | | | | | | | | | | | | | | | | :white_check_mark: | ||
Bx | | | | | | | | | | | | | | | | | ||
Cx | | | | :white_check_mark: | | | | | | | | | | | | ||
Dx | | | | | | | | | | | | | | | | | ||
Ex | | | | | | | | | | | | | | | | | ||
Fx | | | | | | | | | | | | | | | | | ||
|
||
| Prefixed ($CB $xx) | x0 | x1 | x2 | x3 | x4 | x5 | x6 | x7 | x8 | x9 | xA | xB | xC | xD | xE | xF | | ||
| ------------------ | -- | -- | -- | -- | -- | -- | -- | -- | -- | -- | -- | -- | -- | -- | -- | -- | | ||
| 0x | | | | | | | | | | | | | | | | | | ||
| 1x | | | | | | | | | | | | | | | | | | ||
| 2x | | | | | | | | | | | | | | | | | | ||
| 3x | | | | | | | | | | | | | | | | | | ||
| 4x | | | | | | | | | | | | | | | | | | ||
| 5x | | | | | | | | | | | | | | | | | | ||
| 6x | | | | | | | | | | | | | | | | | | ||
| 7x | | | | | | | | | | | | | | | | | | ||
| 8x | | | | | | | | | | | | | | | | | | ||
| 9x | | | | | | | | | | | | | | | | | | ||
| Ax | | | | | | | | | | | | | | | | | | ||
| Bx | | | | | | | | | | | | | | | | | | ||
| Cx | | | | | | | | | | | | | | | | | | ||
| Dx | | | | | | | | | | | | | | | | | | ||
| Ex | | | | | | | | | | | | | | | | | | ||
| Fx | | | | | | | | | | | | | | | | | | ||
|
||
|
||
## Important Links | ||
- OPCodes: https://gbdev.io/gb-opcodes/optables/ |