]> git.mdlowis.com Git - proto/cerise-c.git/commit
broke runtime up into a static lib
authorMichael D. Lowis <mike@mdlowis.com>
Fri, 14 Jun 2024 03:14:35 +0000 (23:14 -0400)
committerMichael D. Lowis <mike@mdlowis.com>
Fri, 14 Jun 2024 03:14:35 +0000 (23:14 -0400)
commit1d4ca5d55c46f74e29dc55e5ab06a68c66f81f50
treed6cbebd32b779dff08aedf74b41f8ef68da427c3
parente092e35934275cf16480a1b9f95e42b6d0131629
broke runtime up into a static lib
19 files changed:
.gitignore
build.sh
runtime.h
runtime/Array.c [new file with mode: 0644]
runtime/Hash.c [new file with mode: 0644]
runtime/Object.c [new file with mode: 0644]
runtime/OpAdd.c [new file with mode: 0644]
runtime/OpDiv.c [new file with mode: 0644]
runtime/OpEq.c [new file with mode: 0644]
runtime/OpGt.c [new file with mode: 0644]
runtime/OpGtEq.c [new file with mode: 0644]
runtime/OpLt.c [new file with mode: 0644]
runtime/OpLtEq.c [new file with mode: 0644]
runtime/OpMod.c [new file with mode: 0644]
runtime/OpMul.c [new file with mode: 0644]
runtime/OpNeq.c [new file with mode: 0644]
runtime/OpSub.c [new file with mode: 0644]
runtime/ToString.c [new file with mode: 0644]
runtime/runtime.c [moved from runtime.c with 100% similarity]