You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 2, 2020. It is now read-only.
I'd like to make the SUBLEQ assembler embeddable, but that means it has be decoupled from the entry point. Right now the entry point is responsible for linking tokenization/lexing, parsing, and code generation (in fact, the entry point is responsible for performing code generation). This means that the app in which the assembler is embedded has to perform the same composition of operations.
To make the SUBLEQ assembler easier to embed, I'd like to create a SUBLEQ namespace and implement a single assemble() or compile() function that accepts string input and outputs an array of numbers (addresses).