summaryrefslogtreecommitdiff
path: root/ccross.sml
diff options
context:
space:
mode:
authorVladimir Azarov <avm@intermediate-node.net>2025-08-04 22:13:17 +0200
committerVladimir Azarov <avm@intermediate-node.net>2025-08-04 22:13:17 +0200
commita4c60603f61dd1a9f0ce420be9067965586dd694 (patch)
treec5f48221a8291b817d6eec0fd3f70eeb8c26a300 /ccross.sml
parent396ebf0c76153e5e1e9dc77371bdd02b4d3d85d1 (diff)
Object assembly
Diffstat (limited to 'ccross.sml')
-rw-r--r--ccross.sml4
1 files changed, 3 insertions, 1 deletions
diff --git a/ccross.sml b/ccross.sml
index d3dcf3c..46851e9 100644
--- a/ccross.sml
+++ b/ccross.sml
@@ -6,7 +6,9 @@ structure ccross:> CCROSS = struct
structure Parser:> PARSER =
Parser(structure Tree = Tree; structure P = ppc;
structure D = Dynarray)
- structure D:> DRIVER = Driver(Parser)
+ structure IL:> IL = IL(Parser)
+ structure Emit:> EMIT = Emit(IL)
+ structure D:> DRIVER = Driver(Emit)
structure ExnHandler:> EXN_HANDLER = ExnHandler
end