mirror of
https://git.wuffs.org/MWCC
synced 2025-12-18 09:25:28 +00:00
12 lines
343 B
C
12 lines
343 B
C
#ifndef COMPILER_INLINEASMREGISTERS_H
|
|
#define COMPILER_INLINEASMREGISTERS_H
|
|
|
|
#include "compiler/common.h"
|
|
#include "compiler/InlineAsm.h"
|
|
|
|
extern void InlineAsm_InitializeRegisters(void);
|
|
extern void InlineAsm_InsertRegister(char *name, char rclass, short num, Object *object);
|
|
extern IARegister *InlineAsm_LookupRegister(char *name);
|
|
|
|
#endif
|