Forgot to commit

This commit is contained in:
ganome 2025-02-09 00:29:34 -07:00
parent b64f6711bd
commit 92d5fba1b8
Signed by untrusted user who does not match committer: Ganome
GPG Key ID: 944DE53336D81B83
11 changed files with 76 additions and 3 deletions

5
cpp/.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"vscord.app.whitelist": [
"220362876546711552"
]
}

28
cpp/.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,28 @@
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++-14 build active file",
"command": "/usr/bin/g++-14",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}

View File

@ -3,5 +3,5 @@
int main() int main()
{ {
std::cout << "Hello World!\n"; std::cout << "Hello World!\n";
return 0; return 0;
} }

BIN
cpp/ANSI/W1/Day5/5.10/main Executable file

Binary file not shown.

View File

@ -27,4 +27,4 @@ int main()
int Double(int target) int Double(int target)
{ {
return 2 * target; return 2 * target;
} }

View File

@ -0,0 +1,13 @@
CFLAGS = -std=c++03 -O2
LDFLAGS = -lglfw -lvulkan -ldl -lpthread -lX11 -lXxf86vm -lXrandr -lXi
1.1: main.cpp
c++ $(CFLAGS) -o fibonaccisequence main.cpp $(LDFLAGS)
.PHONY: test clean
test: fibonaccisequence
./fibonaccisequence
clean:
rm -f fibonaccisequence

View File

View File

@ -0,0 +1,13 @@
CFLAGS = -std=c++03 -O2
LDFLAGS = -lglfw -lvulkan -ldl -lpthread -lX11 -lXxf86vm -lXrandr -lXi
1.1: main.cpp
c++ $(CFLAGS) -o fibonaccisequence main.cpp $(LDFLAGS)
.PHONY: test clean
test: fibonaccisequence
./fibonaccisequence
clean:
rm -f fibonaccisequence

View File

@ -0,0 +1,13 @@
CFLAGS = -std=c++03 -O2
LDFLAGS = -lglfw -lvulkan -ldl -lpthread -lX11 -lXxf86vm -lXrandr -lXi
1.1: main.cpp
c++ $(CFLAGS) -o fibonaccisequence main.cpp $(LDFLAGS)
.PHONY: test clean
test: fibonaccisequence
./fibonaccisequence
clean:
rm -f fibonaccisequence

1
cpp/ANSI/todo Normal file
View File

@ -0,0 +1 @@
Day 5 - Page 120~; talking about registers

BIN
cpp/hardwareDB.tgz Normal file

Binary file not shown.