Updated hello.c from putch() to printf().
[pdp11-modern-c] / hello.c
CommitLineData
846f4d60
AT
1/* (c) 2020 Aaron Taylor <ataylor at subgeniuskitty dot com> */
2/* See LICENSE.txt file for copyright and license details. */
3
4#include "pdp11/pdp11.h"
5
6void
7hello(void)
8{
9 wait(01000);
9d5ce23c 10 printf("Hello, World!\n");
846f4d60 11}