pass-lang/src/asm.h

10 lines
117 B
C
Raw Normal View History

2022-09-05 23:48:56 -07:00
#ifndef _ASM_H
#define _ASM_H
#include "format.h"
2022-09-05 23:48:56 -07:00
/// Jump to a known address.
void inst_jump(symbol sym);
2022-09-05 23:48:56 -07:00
#endif