initial commit

This commit is contained in:
2026-07-15 15:02:54 +10:00
commit 8e26d3e19d
8 changed files with 168 additions and 0 deletions

12
meson.build Normal file
View File

@@ -0,0 +1,12 @@
project('MyLittleCPU', 'c')
sources = [
'src/main.c',
'src/emu.c',
'src/memory.c',
'src/instruction.c'
]
args = ['-Wall', '-Wextra', '-Wpedantic', '-O3']
executable('emu', sources, c_args: args)