guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#49643] [PATCH 2/2] gnu: Add z80dasm


From: Thomas Albers
Subject: [bug#49643] [PATCH 2/2] gnu: Add z80dasm
Date: Fri, 13 Aug 2021 16:31:56 +0200

From: Thomas Albers <tgalbers2000@gmail.com>

---
 gnu/packages/assembly.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm
index a60370ad8d..4746e209dc 100644
--- a/gnu/packages/assembly.scm
+++ b/gnu/packages/assembly.scm
@@ -561,3 +561,21 @@ this is a case where ``the code is the documentation.''")
 official mnemonics together with many unofficial ones.")
     (home-page "http://savannah.nongnu.org/projects/z80asm";)
     (license license:gpl3)))
+
+(define-public z80dasm
+  (package
+    (name "z80dasm")
+    (version "1.1.6")
+    (source (origin
+              (uri 
"https://www.tablix.org/~avian/z80dasm/z80dasm-1.1.6.tar.gz";)
+              (sha256
+               (base32 "0q6k1dy34p1mncq5cp5a3yakka9a9j4llw6vqjh81wr8n1xrdlvn"))
+              (method url-fetch)))
+    (build-system gnu-build-system)
+    (synopsis "Disassembler for the Zilog Z80 microprocessor and compatibles")
+    (description "Disassembler for the Zilog Z80 microprocessor and
+compatibles.  It can be used to reverse engineer programs and operating systems
+for 1980's microcomputers using this processor architecture (for example
+Sinclair ZX81, Spectrum and many others).")
+    (home-page "https://www.tablix.org/~avian/blog/articles/z80dasm/";)
+    (license license:gpl2)))
-- 
2.32.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]