diff --git a/.gitignore b/.gitignore index 77c1c238..99ad6b47 100644 --- a/.gitignore +++ b/.gitignore @@ -9,5 +9,6 @@ /*.md5 /*.sh~ /*.img +src/include/asuro.pas .vscode/launch.json .vscode diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..c945c666 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,20 @@ +{ + "configurations": [ + { + "name":"Run", + "request": "launch", + "type": "coreclr", + "preLaunchTask": "Build", + "program": "VBoxSDL", + "args": [ + "--comment", + "Asuro", + "--startvm", + "7d395c96-891c-4139-b77d-9b6b144b0b93" + ], + "cwd": "${workspaceFolder}", + "console": "internalConsole", + "internalConsoleOptions": "neverOpen" + } + ] +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..3f74eb24 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,31 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "2.0.0", + "tasks": [ + { + "label": "Build", + "command": "docker-compose", + "args": [ + "run", + "builder" + ], + "type": "shell", + "problemMatcher": [], + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "label": "Build (Builder)", + "command": "docker-compose", + "args": [ + "build", + "builder" + ], + "type": "shell" + } + ] +} \ No newline at end of file diff --git a/src/include/asuro.pas b/src/include/asuro.pas deleted file mode 100644 index 828ea4a6..00000000 --- a/src/include/asuro.pas +++ /dev/null @@ -1,24 +0,0 @@ -unit asuro; - -interface - -const - VERSION = '1.1.0-a'; - VERSION_MAJOR = '1'; - VERSION_MINOR = '1'; - VERSION_SUB = '0'; - REVISION = ''; - RELEASE = 'a'; - LINE_COUNT = 33270; - FILE_COUNT = 106; - DRIVER_COUNT = 34; - FPC_VERSION = '2.6.4'; - NASM_VERSION = '2.14.02'; - MAKE_VERSION = '4.2.1'; - COMPILE_DATE = '20/06/21'; - COMPILE_TIME = '01:26:22'; - CHECKSUM = '7f99140bf11cfd367c86bca3e44db0d9'; - -implementation - -end.