Updated hello.c from putch() to printf().
[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);
printf("Hello, World!\n");
}