summaryrefslogtreecommitdiffhomepage
path: root/asm/intel64/ret.h
blob: 7e7f68c8e4a6bbc3d2b3d6a0c4f8e158ea8765eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Return from procedure

#pragma once

#include <asm/chunk.h>

class Op_ret: public OpSimple
{
public:
 Op_ret() : OpSimple({ 0xC3 }) {} // near return; TODO: far return is 0xCB
};