meta info

master
able 2024-04-24 20:09:45 -05:00
parent 43cc7ab636
commit a2755e6af6
4 changed files with 26 additions and 4 deletions

View File

@ -0,0 +1,15 @@
[package]
name = "fisp_test"
authors = ["able"]
[dependants.libraries]
[dependants.binaries]
# Refers to @FunkyEgg's lisp compiler for ableOS
fisp = ""
[build.debug]
command = "fisp src/main.fisp"
[run.debug]
depends = ["build.debug"]
command = ""

View File

@ -0,0 +1 @@
(log info "Hello World\n")

View File

@ -1,12 +1,12 @@
[package]
name = "logger_testing"
name = "htasm_test"
authors = ["able"]
# Similar to cargo libraries
[dependants.libraries]
# Similar to cargo install
[dependants.binaries]
hblang = ""
htasm = ""
[build.debug]
command = "hblang src/main.hbl"

View File

@ -1,2 +1,8 @@
fn main() {
}
start:
li64 r1, 3
li64 r2, 1
lra16 r3, r0, hello_string
li64 r4, 0x14
string
.db "Hello, world!\n"