-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
simcpucli 0.2.0 (via
alr publish --submit
)
- Loading branch information
1 parent
2dbe82a
commit 8807538
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name = "simcpucli" | ||
description = "CLI for CPU simulator" | ||
version = "0.2.0" | ||
|
||
long-description = """ | ||
This provides a simple command line interface to the CPU simulator library. | ||
It has commands for setting and reading memory, reading registers, and | ||
executing instructions. It also uses the Tiny-Lisp library so that many | ||
of these actions can be scripted. | ||
""" | ||
|
||
authors = ["Brent Seidel"] | ||
maintainers = ["Brent Seidel <[email protected]>"] | ||
maintainers-logins = ["BrentSeidel"] | ||
licenses = "GPL-3.0-or-later" | ||
website = "https://github.com/BrentSeidel/Sim-CPU" | ||
tags = ["cpu-simulator"] | ||
|
||
executables = ["simcpucli"] | ||
|
||
[[depends-on]] | ||
gnat = ">7.5" | ||
|
||
[[depends-on]] | ||
bbs = "~0.1.0" | ||
|
||
[[depends-on]] | ||
bbs_lisp = "~0.1.0" | ||
|
||
[[depends-on]] | ||
bbs_simcpu = "~0.2.0" | ||
|
||
[origin] | ||
commit = "b3aaa27db58911ae61f0270eff8ab72312eb885b" | ||
subdir = "./cli/" | ||
url = "git+https://github.com/BrentSeidel/Sim-CPU.git" | ||
|