diff options
| author | Andrew Chambers <[email protected]> | 2021-10-12 19:42:01 +1300 |
|---|---|---|
| committer | Andrew Chambers <[email protected]> | 2021-10-12 19:42:01 +1300 |
| commit | 25fa3f8e631f26b09303b1263d9bf5cf4e564c64 (patch) | |
| tree | f3abf4d65645c5f1327dd81a9af8249f95dcc1bb /minias.h | |
| parent | b4e630f77661aae9e030e9dabead9ba5b0370368 (diff) | |
More types of call.
Diffstat (limited to 'minias.h')
| -rw-r--r-- | minias.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -270,7 +270,11 @@ typedef String Asciiz; typedef struct { AsmKind kind; - const char *target; + uint8_t indirect; + union { + Parsev *indirect; + Value direct; + } target; } Call; typedef struct { |
