This commit is contained in:
Jonas Urban 2026-04-09 15:44:15 +02:00
parent c978250c80
commit 3442cc5697
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#include "linker.h" #include "linker.h"
void ausgabe(int ausgabeWert){ void ausgaben(int ausgabeWert){
std::cout << "Ausgabe" << ausgabeWert; std::cout << "Ausgabe" << ausgabeWert;
} }

View File

@ -3,9 +3,9 @@
using namespace std; using namespace std;
int main() { int main() {
int fehler; int fehler = 0;
cout << fehler cout << fehler;
} }
//AsemblerCode mit -S und erzeugteDatei.s //AsemblerCode mit -S und erzeugteDatei.s