From aaf4dffe1a6907afc23c89a56675619027f9c94e Mon Sep 17 00:00:00 2001 From: Bjorn Einar Bjarntes Date: Fri, 17 Dec 2021 20:46:23 +0100 Subject: [PATCH] init --- .vscode/c_cpp_properties.json | 17 +++++++++++++++++ .vscode/extensions.json | 5 +++++ readme.md | 14 ++++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 .vscode/c_cpp_properties.json create mode 100644 .vscode/extensions.json create mode 100644 readme.md diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..23be593 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,17 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**", + "/usr/share/cc65/include" + ], + "defines": [], + "compilerPath": "/usr/bin/gcc", + "cStandard": "gnu17", + "cppStandard": "gnu++14", + "intelliSenseMode": "linux-gcc-x64" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..610a551 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "ms-vscode.cpptools" + ] +} \ No newline at end of file diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..c858be4 --- /dev/null +++ b/readme.md @@ -0,0 +1,14 @@ +A port of https://github.com/bjartwolf/ant to the high level language c + +# Getting started + +Install cc65 in WSL2 + +https://cc65.github.io/doc/intro.html + +``` +sudo apt-get install cc65 +``` + + +Not sure if I had a typo in my header or I have to import sudo apt-get install clang \ No newline at end of file