Initial commit to 'Modern C Template For PDP-11' repository.
[pdp11-modern-c] / hello.c
/* (c) 2020 Aaron Taylor <ataylor at subgeniuskitty dot com> */
/* See LICENSE.txt file for copyright and license details. */
#include "pdp11/pdp11.h"
void
hello(void)
{
wait(01000);
putch('H');
putch('e');
putch('l');
putch('l');
putch('o');
putch(',');
putch(' ');
putch('W');
putch('o');
putch('r');
putch('l');
putch('d');
putch('!');
putch('\n');
}