Skip to content

Tutorial

Hello world

#include <stdio.h>

int main(void) {
  printf("Hello world!\n");
  return 0;
}
.include "telestrat.inc"
.include "../orix-sdk/macros/SDK_print.mac"

start:
    print str_hello

    rts
str_hello:
    .byte "Hello world!",$0A,$0D,0

Last update: 2023-05-05