How To Install z80dasm on Fedora 36
Introduction
In this tutorial we learn how to install z80dasm
on Fedora 36.
What is z80dasm
z80dasm is a 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 ZX81, Spectrum, Galaksija and many others). Generated assembly code can be assembled back with a number of Z80 assemblers. Compatibility with z80asm was thoroughly tested.
We can use yum
or dnf
to install z80dasm
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install z80dasm.
Install z80dasm on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install z80dasm
using dnf
by running the following command:
sudo dnf -y install z80dasm
Install z80dasm on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install z80dasm
using yum
by running the following command:
sudo yum -y install z80dasm
How To Uninstall z80dasm on Fedora 36
To uninstall only the z80dasm
package we can use the following command:
sudo dnf remove z80dasm
z80dasm Package Contents on Fedora 36
/usr/bin/z80dasm
/usr/lib/.build-id
/usr/lib/.build-id/4a
/usr/lib/.build-id/4a/109994922a559c89c0a300753a2262cf84fe43
/usr/share/doc/z80dasm
/usr/share/doc/z80dasm/AUTHORS
/usr/share/doc/z80dasm/NEWS
/usr/share/doc/z80dasm/README
/usr/share/licenses/z80dasm
/usr/share/licenses/z80dasm/COPYING
/usr/share/man/man1/z80dasm.1.gz
References
Summary
In this tutorial we learn how to install z80dasm
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).