The gameboy tag has no wiki summary.
4
votes
1answer
102 views
Using two Arrays in C/Gameboy programming
For a game in Gameboy programming, I am using four arrays called top, oldTop, bottom and oldBottom:
struct Point { int x, y; };
struct Rect { struct Point xx, yy; };
Rect top[size], oldTop[size];
...
-2
votes
2answers
45 views
Flagging a button's register as read [closed]
I'm coding a Game Boy game using C. I am implementing a cursor that can move up and down depending on what button is pressed. If the UP key is pressed, the corresponding bit gets set in the register. ...
0
votes
0answers
82 views
How to run Game Boy online project? [closed]
I just downloaded the .zip file and uploaded all files to my server of this project:
https://github.com/grantgalitz/GameBoy-Online/
When I try to go to the website to try the emulator it dont works, ...
6
votes
3answers
556 views
How do I learn to write a console emulator? [duplicate]
Possible Duplicate:
How do emulators work and how are they written?
I'd like to try writing a basic gameboy emulator, or maybe even NES. I know the basics of C and I'm fairly good at Java, ...
0
votes
3answers
125 views
Emulation: Unconditional jumps and PC increment through CPU cycles
I'm writing a simple GB emulator (wow, now that's something new, isn't it), since I'm really taking my first steps in emu.
What i don't seem to understand is how to correctly implement the CPU cycle ...
0
votes
1answer
162 views
How To Compile Game Boy Rom From C or C++
I need to compile a Game Boy ROM in Windows. How is that done? I've looked everywhere on Google; only to find dead links.
0
votes
1answer
8k views
GBA emulator wp7 in C#
I want to do a GameBoy Advance emulator for WP7 but I'm not sure where to start. Anyone can point me in the right direction? I know there is one for GB, maybe starting there would be a good idea. Any ...
2
votes
1answer
127 views
OS-related operations and modes on ARM7TDMI(GameBoy Advance)
I would like to know whether the CPU of the GBA can use any features usually reserved for OSes, and how one can do this.
For instance, I would like to have access to the privileged modes which the cpu ...
2
votes
2answers
942 views
table of functions vs switch in golang
im am writing a simple emulator in go (should i? or should i go back to c?).
anyway, i am fetching the instruction and decoding it. at this point i have a byte like 0x81, and i have to execute the ...
2
votes
2answers
272 views
Gameboy-like keys and D-Pad for Android
I wanted to make an RPG for Android 2.3 Mobile Phone and thought that the good old Gameboy had the perfect format for such games. So I want to build a "Case" with a D-Pad and a few keys and connect ...
12
votes
1answer
466 views
Zilog Z80 OP-Code implementation
I'm currently developing an emulator for the good old GameBoy and I'm facing some problems understandig how some basic operation codes have to be implemented.
Right now I'm implementing the AND ...
-1
votes
1answer
341 views
C Gameboy separate functions an main files [closed]
I am working on a gameboy project for a class asignment. I was told, that we needed to have a separate "functions" file, and "main" file. I am going insane doing this. I have made a header file ...
8
votes
2answers
1k views
GBZ80: What constitutes a “half-carry”?
The Game Boy Z80 CPU has a half-carry flag, and I can't seem to find much information about when to set/clear it.
What I understand so far is that any 8-bit add, subtract, shift, or rotate operation ...
1
vote
3answers
1k views
Game Boy emulator with a full debugger?
As part of the work I've been doing to answer this question about the technical workings of a glitch in Pokémon Red, I've been looking for a way to use a standard debugger to debug a Game Boy ROM. ...
1
vote
1answer
283 views
Using DMA to load an image into Visual Boy Advance (VBA)
I am new to C; I have an image file translated by means of online tools into a .h and .c file. The C file contains an array of 1024 16 bit hexadecimal numbers, used to denote on/off of bits. I want to ...
2
votes
2answers
1k views
GameBoy color emulator opcodes automation
I'm writting a GameBoy color emulator in C, just to introduce myself into this world, it is interpreted, nothing of dynamic or static recompilation :P
Now I'm right in the tedious task of ...
2
votes
3answers
375 views
GBZ80: How does LD HL,(SP+e) affect H and C flags?
On Gameboy Z80, exactly how does the LD HL,(SP+e) operation affect H and C flags? (Half-carry + carry)
Reference: http://www.devrs.com/gb/files/opcodes.html