mirror of
https://github.com/Ed94/pikuma_ps1.git
synced 2026-06-01 18:41:13 -07:00
22 lines
256 B
C
22 lines
256 B
C
// #include <stdlib.h>
|
|
#include "duffle/dsl.h"
|
|
#include "duffle/math.h"
|
|
#include "duffle/gp.h"
|
|
#include "hello_gpu.h"
|
|
|
|
DoubleBuffer screen_buffer;
|
|
S16 active_screen_buffer;
|
|
|
|
|
|
int main(void)
|
|
{
|
|
gp_screen_init();
|
|
|
|
while (1)
|
|
{
|
|
|
|
};
|
|
|
|
return 0;
|
|
}
|