feat: Implement Assembler

This commit is contained in:
Laborratte 5 2024-07-20 18:15:58 +02:00
parent 8e5fba32f6
commit 29e5f97dae
Signed by: Laborratte5
GPG key ID: 3A30072E35202C02
3 changed files with 38 additions and 3 deletions

View file

@ -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