mirror of
https://github.com/Museum-of-Art-and-Digital-Entertainment/macross.git
synced 2024-11-23 02:33:48 +00:00
10 lines
264 B
C
10 lines
264 B
C
#ifndef EMIT_BRANCH_H_
|
|
#define EMIT_BRANCH_H_
|
|
|
|
#include "macrossTypes.h"
|
|
|
|
void emitRelativeBranch(conditionType condition, valueType *target, valueType *fixupLocation);
|
|
simpleFixupListType *emitJump(valueType *target, simpleFixupListType *previousFixups);
|
|
|
|
#endif
|