Skip to content

Commit

Permalink
Fixed file paths I put in for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Reschivon committed Oct 28, 2021
1 parent a9369d2 commit 1cb974f
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 177 deletions.
Binary file removed LinkedOut
Binary file not shown.
33 changes: 0 additions & 33 deletions Out.S

This file was deleted.

142 changes: 0 additions & 142 deletions boot2.fs

This file was deleted.

4 changes: 2 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ int main(int argc, char* argv[]) {

ir_generator.exec_module();

mov::ObjectGenerator::generate("../" + program_name + ".S", *module);
mov::ObjectGenerator::generate(program_name + ".S", *module);

// Link the assembly file provided
// Note: invokes `clang++` command in a new shell instance
// May not work on every system
mov::ObjectGenerator::link("../" + program_name + ".S", program_name);
mov::ObjectGenerator::link(program_name + ".S", program_name);

}

0 comments on commit 1cb974f

Please sign in to comment.