diff options
| author | Fuwn <[email protected]> | 2022-09-28 13:26:06 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-09-28 13:26:06 -0700 |
| commit | ff243712bae42614c798155b592fdcf7893eefa0 (patch) | |
| tree | 56cfbd3e9ee46a62743ea7799bbc60be741b876f /profile/README.md | |
| parent | docs(README.md): example (diff) | |
| download | archived-github-ff243712bae42614c798155b592fdcf7893eefa0.tar.xz archived-github-ff243712bae42614c798155b592fdcf7893eefa0.zip | |
Diffstat (limited to 'profile/README.md')
| -rw-r--r-- | profile/README.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/profile/README.md b/profile/README.md new file mode 100644 index 0000000..bb2445b --- /dev/null +++ b/profile/README.md @@ -0,0 +1,23 @@ +# Divina + +A modern build system for assembly + +```lua +-- Divina.lua + +Package = { + name = "example", + version = "0.1.0", + description = "A default Divina package that you can extend!", + compile_options = {}, + minimum_divina_version = Divina.version, + sources = { + "example/Main.asm", + }, + type = Divina.Type.Bin, + arch = Divina.Arch.x64, + license = "Unlicense", +} + +return Package +``` |