summaryrefslogtreecommitdiff
path: root/demo/source/initgfx.c
blob: e2f75d41b16535525d0becdc5d7e3de4b8f7df56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <agbx-demo.h>

#include <ax/gfx.h>

void axd_initgfx(void) {
	ax_set10(0x500'0000u,0b0u);
	ax_set10(0x500'0002u,0b111111111111111u);
	ax_set10(0x500'0004u,0b11111u);
	ax_set10(0x500'0006u,0b1111111111u);
	ax_set10(0x500'0008u,0b1111100000u);
	ax_set10(0x500'000Au,0b111111111100000u);
	ax_set10(0x500'000Cu,0b111110000000000u);
	ax_set10(0x500'000Eu,0b111110000011111u);
	ax_set10(0x400'0000u,0x404u);
	ax_clrscrn4(0x600'0000u,0x0u);
	ax_clrscrn4(0x600'A000u,0x0u);
}