This commit is contained in:
Timerix 2024-11-15 09:10:17 +05:00
parent 38d62ba8d7
commit bd699cd53f
3 changed files with 4 additions and 4 deletions

4
.vscode/launch.json vendored
View File

@ -5,8 +5,8 @@
"name": "(gdb) Debug",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/bin/tali",
"windows": { "program": "${workspaceFolder}/bin/tali.exe" },
"program": "${workspaceFolder}/bin/tcpu",
"windows": { "program": "${workspaceFolder}/bin/tcpu.exe" },
"args": [ "--image", "image.bin" ],
"cwd": "${workspaceFolder}/bin",
"preLaunchTask": "build_exec_dbg",

View File

@ -1,4 +1,4 @@
# TALI
# TCPU
Assembly language interpreter written in pure C. Can execute programs up to 1 MEGABYTE (1048576 bytes) in size!!!
## Building

View File

@ -2,7 +2,7 @@
CBUILD_VERSION=2.1.4
CONFIG_VERSION=1
PROJECT="tali"
PROJECT="tcpu"
CMP_C="gcc"
CMP_CPP="g++"
STD_C="c11"