Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ FEATURE: Add import keyword #11

Open
LucaDillenburg opened this issue Sep 20, 2020 · 0 comments
Open

✨ FEATURE: Add import keyword #11

LucaDillenburg opened this issue Sep 20, 2020 · 0 comments

Comments

@LucaDillenburg
Copy link
Member

Is your feature request related to a problem? Please describe.
I'm always frustrated when I have to write a very large program because all of the code has to be on the same file.

Describe the solution you'd like
Add an import keyword that merges the files into a single source code while processing it so that the code can be written in different files. The imports can be made on any line.
Code example:
main.asm

store 0x01

import utils.asm
#store 0x01
#add 0x02

sub 0x3

utils.asm

store 0x01
add 0x02

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant