From d69e331890c807396644b78be2c86d9afc1de78d Mon Sep 17 00:00:00 2001 From: Jason Self Date: Thu, 25 Apr 2019 05:47:15 -0700 Subject: [PATCH] Add a small Hello World program to be assembled --- zilasm/hello.zap | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 zilasm/hello.zap diff --git a/zilasm/hello.zap b/zilasm/hello.zap new file mode 100644 index 0000000..1ec2270 --- /dev/null +++ b/zilasm/hello.zap @@ -0,0 +1,5 @@ +; SPDX-License-Identifier: AGPL-3.0-or-later + .FUNCT GO + PRINTI "Hello world" ;A comment + QUIT + .END \ No newline at end of file -- 2.31.1