diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-05-21 09:12:06 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-05-21 09:12:06 +0200 |
| commit | 5e49fbae54bd7dcbf2e893acaef699ce9f2587f3 (patch) | |
| tree | 442826994985742eec15a6a26bf537141ebb379a /Examples | |
| parent | f4ee9dd22c91c076ad2bd8ba082f7ad02afac350 (diff) | |
MHR-21: Refactor, WiP symbol support in mov.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Examples')
| -rw-r--r-- | Examples/ExampleAMD64.asm | 2 | ||||
| -rw-r--r-- | Examples/ExampleCPlusPlus.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Examples/ExampleAMD64.asm b/Examples/ExampleAMD64.asm index cc649be..781934c 100644 --- a/Examples/ExampleAMD64.asm +++ b/Examples/ExampleAMD64.asm @@ -2,5 +2,5 @@ export .code64 __ImageStart -mov rax, rdx +mov rax, 17 ret diff --git a/Examples/ExampleCPlusPlus.cxx b/Examples/ExampleCPlusPlus.cxx index 6012b52..3335e1e 100644 --- a/Examples/ExampleCPlusPlus.cxx +++ b/Examples/ExampleCPlusPlus.cxx @@ -5,7 +5,7 @@ int main(int argc, char const* argv[]) bar = 1; bool bar2 = bar; - bar2 = false; + bar2 = false; } return 0; |
