mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-17 11:05:58 +00:00
21 lines
332 B
Plaintext
21 lines
332 B
Plaintext
|
|
#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;
|
|
}
|