1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-01 05:41:31 +00:00
8bitworkshop/presets/vectrex/skeleton.cmoc

21 lines
332 B
Plaintext
Raw Normal View History

2020-06-10 15:25:42 +00:00
#pragma vx_copyright "2020"
#pragma vx_title_pos -100, -80
#pragma vx_title_size -8, 80
#pragma vx_title "GAME TITLE"
#pragma vx_music vx_music_1
#include "vectrex.h"
#include "bios.h"
int main()
{
while(1)
{
wait_retrace();
intensity(0x7f);
print_str_c( 0x10, -0x50, (char*)"HELLO WORLD!" );
}
return 0;
}