Difference between revisions of "Code Examples"
From GbdevWiki
(Add internal link to gbbasic) |
|||
| (8 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
== Simple GBBasic 2.10 example == | == Simple GBBasic 2.10 example == | ||
| + | [[GBBasic 2.10]] | ||
<pre> | <pre> | ||
| Line 10: | Line 11: | ||
70 end | 70 end | ||
</pre> | </pre> | ||
| + | |||
| + | == GBDK C examples == | ||
| + | [https://github.com/mrombout/gbdk_playground GBDK Playground] - Simplified GBDK Examples | ||
| + | |||
| + | [[Simple paint program]] | ||
| + | |||
| + | [[Tic Tac Toe]] | ||
| + | |||
| + | [[Convert string to integer]] | ||
| + | |||
| + | [[Send byte across link cable]] | ||
| + | |||
| + | [[receive byte across link cable]] | ||
== Simple GBDK example == | == Simple GBDK example == | ||
| Line 27: | Line 41: | ||
== Assembler examples == | == Assembler examples == | ||
| − | [[ASM Init| GB Initialization]] | + | * [[ASM Init| GB Initialization]] |
| − | [[ASM Joypad| Reading the joypad]] | + | * [[ASM Joypad| Reading the joypad]] |
| + | * [[ASM Snippets]] | ||
Latest revision as of 02:10, 24 June 2021
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
GBDK Playground - Simplified GBDK Examples
receive byte across link cable
Simple GBDK example
#include <gb/gb.h>
#include <stdio.h>
void main()
{
printf("nHello World!");
}