init
This commit is contained in:
commit
aaf4dffe1a
3 changed files with 36 additions and 0 deletions
17
.vscode/c_cpp_properties.json
vendored
Normal file
17
.vscode/c_cpp_properties.json
vendored
Normal file
|
@ -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
|
||||||
|
}
|
5
.vscode/extensions.json
vendored
Normal file
5
.vscode/extensions.json
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"recommendations": [
|
||||||
|
"ms-vscode.cpptools"
|
||||||
|
]
|
||||||
|
}
|
14
readme.md
Normal file
14
readme.md
Normal file
|
@ -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
|
Loading…
Add table
Reference in a new issue