User contributions
From GbdevWiki
- 17:38, 19 August 2015 (diff | hist) . . (+8) . . Tutorials (→Video Tutorial)
- 17:37, 19 August 2015 (diff | hist) . . (+8) . . Tutorials (→Video Tutorial)
- 17:37, 19 August 2015 (diff | hist) . . (+512) . . Tutorials (→Video Tutorial)
- 17:34, 19 August 2015 (diff | hist) . . (+123) . . Tutorials (→Tutorial de ensamblador)
- 13:57, 23 May 2015 (diff | hist) . . (+1,004) . . Simple paint program (current)
- 13:56, 23 May 2015 (diff | hist) . . (-6) . . Receive byte across link cable (current)
- 13:55, 23 May 2015 (diff | hist) . . (+1,097) . . Receive byte across link cable
- 13:54, 23 May 2015 (diff | hist) . . (+1,091) . . Send byte across link cable (current)
- 13:52, 23 May 2015 (diff | hist) . . (+974) . . Tic Tac Toe (current)
- 13:46, 23 May 2015 (diff | hist) . . (-8) . . Convert string to integer (current)
- 13:46, 23 May 2015 (diff | hist) . . (+799) . . Convert string to integer
- 05:54, 9 October 2014 (diff | hist) . . (+69) . . Code Examples (→GBDK C examples)
- 05:53, 9 October 2014 (diff | hist) . . (+569) . . N Receive byte across link cable (Created page with '<pre> #include <gb/gb.h> #include <stdio.h> void main(void){ while(1){//the program is in a while loop so it keeps checking again and again for a byte printf("Receivi…')
- 05:47, 9 October 2014 (diff | hist) . . (+530) . . N Send byte across link cable (Created page with '<pre> →shows how to send a byte across a link cable if the gameboy that the byte is being sent to is not trying to receive a byte the program will give a error: #include <…')
- 09:32, 13 August 2014 (diff | hist) . . (+31) . . Code Examples (→GBDK C examples)
- 09:31, 13 August 2014 (diff | hist) . . (+464) . . N Convert string to integer (Created page with '<pre> unsigned int atoi(char* s, unsigned char len); unsigned int atoi(char* s, unsigned char len){ unsigned int val=0; unsigned int flag=0; unsigned char i; for(i=0;i<len;i++) …')
- 13:55, 1 August 2014 (diff | hist) . . (+5) . . m Code Examples (→C examples)
- 13:54, 1 August 2014 (diff | hist) . . (+17) . . Code Examples (→C examples)
- 13:53, 1 August 2014 (diff | hist) . . (+5,896) . . Tic Tac Toe
- 13:38, 1 August 2014 (diff | hist) . . (+19) . . Tic Tac Toe
- 13:36, 1 August 2014 (diff | hist) . . (-5,834) . . Tic Tac Toe (Blanked the page)
- 13:34, 1 August 2014 (diff | hist) . . (+5,834) . . N Tic Tac Toe (Created page with '→Tic Tac Toe know in the uk as noughts and crosses please feel free to fix any bugs you find or add gamemodes etc: #include <stdio.h> #include <gb/gb.h> #define MAXX 3 #defi…')
- 16:42, 27 July 2014 (diff | hist) . . (+43) . . Code Examples
- 16:41, 27 July 2014 (diff | hist) . . (+365) . . N Simple paint program (Created page with '<pre> →Simple paint program feel free to edit this and improve on it! compiled with gbdk: #include <gb/gb.h> #include <gb/drawing.h> unsigned char x = 50; unsigned char y = 5…')