Initial commit

This commit is contained in:
2026-07-14 19:54:23 +10:00
commit 7aecc9c576
6 changed files with 256 additions and 0 deletions

8
meson.build Normal file
View File

@@ -0,0 +1,8 @@
project('mlcpu', 'cpp', version : '0.1.0')
sources = files(
'main.cpp',
'emulator.cpp'
)
program = executable('mlcpu', sources)