mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-23 00:39:29 +08:00
17 lines
296 B
C++
17 lines
296 B
C++
#ifndef CODE_BUFFER_X64_H
|
|
#define CODE_BUFFER_X64_H
|
|
|
|
#include "MemoryAllocator/CodeBuffer/CodeBufferBase.h"
|
|
|
|
class CodeBuffer : public CodeBufferBase {
|
|
public:
|
|
CodeBuffer() : CodeBufferBase() {
|
|
}
|
|
|
|
public:
|
|
void FixBindLabel(int offset, int32_t disp) {
|
|
Store(offset, disp);
|
|
}
|
|
};
|
|
|
|
#endif |