feat: Implement Assembler
This commit is contained in:
parent
8e5fba32f6
commit
29e5f97dae
3 changed files with 38 additions and 3 deletions
|
|
@ -52,13 +52,15 @@ executable simple-arithmetic-compiler
|
|||
main-is: Main.hs
|
||||
|
||||
-- Modules included in this executable, other than Main.
|
||||
other-modules: Lexer, Parser, AbstractSyntaxTree, Compiler
|
||||
other-modules: Lexer, Parser, AbstractSyntaxTree, Compiler, Assembler
|
||||
|
||||
-- LANGUAGE extensions used by modules in this package.
|
||||
-- other-extensions:
|
||||
|
||||
-- Other library packages from which modules are imported.
|
||||
build-depends: base ^>=4.16.4.0
|
||||
build-depends: base ^>=4.16.4.0,
|
||||
binary ^>=0.8.9.2,
|
||||
bytestring ^>=0.11.4.0
|
||||
|
||||
-- Directories containing source files.
|
||||
hs-source-dirs: app
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue