diff options
author | Vladimir Azarov <avm@intermediate-node.net> | 2025-08-04 22:13:17 +0200 |
---|---|---|
committer | Vladimir Azarov <avm@intermediate-node.net> | 2025-08-04 22:13:17 +0200 |
commit | a4c60603f61dd1a9f0ce420be9067965586dd694 (patch) | |
tree | c5f48221a8291b817d6eec0fd3f70eeb8c26a300 /ccross.sml | |
parent | 396ebf0c76153e5e1e9dc77371bdd02b4d3d85d1 (diff) |
Object assembly
Diffstat (limited to 'ccross.sml')
-rw-r--r-- | ccross.sml | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |