aboutsummaryrefslogtreecommitdiff
path: root/minias.h
diff options
context:
space:
mode:
authorAndrew Chambers <[email protected]>2021-10-12 19:42:01 +1300
committerAndrew Chambers <[email protected]>2021-10-12 19:42:01 +1300
commit25fa3f8e631f26b09303b1263d9bf5cf4e564c64 (patch)
treef3abf4d65645c5f1327dd81a9af8249f95dcc1bb /minias.h
parentb4e630f77661aae9e030e9dabead9ba5b0370368 (diff)
More types of call.
Diffstat (limited to 'minias.h')
-rw-r--r--minias.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/minias.h b/minias.h
index 38f1f1d..b5eb779 100644
--- a/minias.h
+++ b/minias.h
@@ -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 {