2026-07-15 15:02:54 +10:00
|
|
|
project('MyLittleCPU', 'c')
|
|
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
|
'src/main.c',
|
|
|
|
|
'src/emu.c',
|
|
|
|
|
'src/memory.c',
|
|
|
|
|
'src/instruction.c'
|
|
|
|
|
]
|
|
|
|
|
|
2026-07-15 15:54:51 +10:00
|
|
|
args = ['-Wall', '-Wextra', '-Wpedantic', '-O3', '-ggdb', '-fsanitize=address']
|
2026-07-15 15:02:54 +10:00
|
|
|
|
|
|
|
|
executable('emu', sources, c_args: args)
|