mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-22 09:19:28 +08:00
12 lines
219 B
C
12 lines
219 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "MemoryAllocator/CodeBuffer/CodeBufferBase.h"
|
||
|
|
|
||
|
|
class CodeBuffer : public CodeBufferBase {
|
||
|
|
public:
|
||
|
|
CodeBuffer() : CodeBufferBase() {
|
||
|
|
}
|
||
|
|
|
||
|
|
public:
|
||
|
|
void FixBindLabel(int offset, int32_t disp);
|
||
|
|
};
|