diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-10-17 17:37:50 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-10-17 17:37:50 +0200 |
commit | 7b49d17f90f26394a116348befb5edcdffcedcb6 (patch) | |
tree | c32e76a9bea5851bfac92708fa626373573e4f06 /asm/intel64/ret.cpp | |
parent | f86999e137f43372236f2dccd1fe3572a85c0dcd (diff) |
Add ret and int
Diffstat (limited to 'asm/intel64/ret.cpp')
-rw-r--r-- | asm/intel64/ret.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/asm/intel64/ret.cpp b/asm/intel64/ret.cpp new file mode 100644 index 0000000..cd9ddd4 --- /dev/null +++ b/asm/intel64/ret.cpp @@ -0,0 +1,12 @@ +#include "ret.h" + +#include <asm/assembler.h> + +namespace { + +bool registered { registerOp("ret", [](AsmArgs& args) -> std::shared_ptr<Op>{ + return std::make_shared<Op_ret>(); + }) }; + +} + |