1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-23 00:39:29 +08:00
Files
Alas/blcrack/cracker/Dobby/source/MemoryAllocator/CodeBuffer/code-buffer-x64.h
2025-11-01 00:23:46 +08:00

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