Replace the WSAA macros with functions
[nasm.git] / wsaa.h
blob0980174516fee42bd6dc11f4891837e1ec070f03
1 #ifndef NASM_WSAA_H
2 #define NASM_WSAA_H
4 #include "compiler.h"
5 #include "nasmlib.h"
7 void saa_write8(struct SAA *s, uint8_t v);
8 void saa_write16(struct SAA *s, uint16_t v);
9 void saa_write32(struct SAA *s, uint32_t v);
10 void saa_write64(struct SAA *s, uint64_t v);
12 #endif /* wsaa.h */