mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-20 01:31:51 +00:00
21 lines
421 B
Plaintext
21 lines
421 B
Plaintext
|
|
||
|
#include "neslib.h"
|
||
|
|
||
|
//#link "jroatch.c"
|
||
|
extern unsigned char jroatch_chr[0x1000];
|
||
|
#define TILESET jroatch_chr
|
||
|
|
||
|
void main(void)
|
||
|
{
|
||
|
//copy tileset to RAM
|
||
|
vram_adr(0x0);
|
||
|
vram_write((unsigned char*)TILESET, sizeof(TILESET));
|
||
|
pal_col(1,0x04);
|
||
|
pal_col(2,0x20);
|
||
|
pal_col(3,0x30);
|
||
|
vram_adr(NTADR_A(2,2));
|
||
|
vram_write("HELLO, WORLD!", 12);
|
||
|
ppu_on_all();//enable rendering
|
||
|
while(1);//do nothing, infinite loop
|
||
|
}
|