Difference between revisions of "Code Examples"
From GbdevWiki
(→GBDK C examples) |
(→GBDK C examples) |
||
Line 17: | Line 17: | ||
[[Convert string to integer]] | [[Convert string to integer]] | ||
+ | |||
+ | [[Send byte across link cable]] | ||
+ | |||
+ | [[receive byte across link cable]] | ||
== Simple GBDK example == | == Simple GBDK example == |
Revision as of 05:54, 9 October 2014
Simple GBBasic 2.10 example
10 rem Simple example 20 for i=1 to 16 30 u=rnd(1)*16 40 print u 50 delay 20 60 next i 70 end
GBDK C examples
receive byte across link cable
Simple GBDK example
#include <gb/gb.h> #include <stdio.h> void main() { printf("nHello World!"); }