Create CodeGen module
This commit is contained in:
parent
898160d611
commit
892658de78
@ -2,4 +2,5 @@ module Windows12 where
|
||||
|
||||
import Windows12.Ast
|
||||
import Windows12.Lexer
|
||||
import Windows12.Parser
|
||||
import Windows12.Parser
|
||||
import Windows12.CodeGen
|
||||
|
8
src/Windows12/CodeGen.hs
Normal file
8
src/Windows12/CodeGen.hs
Normal file
@ -0,0 +1,8 @@
|
||||
module Windows12.CodeGen where
|
||||
|
||||
import Data.Text (Text)
|
||||
import Windows12.Ast
|
||||
import LLVM.AST (Module)
|
||||
|
||||
codegen :: Text -> Program -> Module
|
||||
codegen filename (Program structs enums funcs) = undefined
|
@ -68,6 +68,7 @@ executable windows12
|
||||
Windows12.Ast
|
||||
Windows12.Lexer
|
||||
Windows12.Parser
|
||||
Windows12.CodeGen
|
||||
|
||||
-- LANGUAGE extensions used by modules in this package.
|
||||
-- other-extensions:
|
||||
|
Loading…
x
Reference in New Issue
Block a user