How To Install z80asm on Fedora 34
Introduction
In this tutorial we learn how to install z80asm
on Fedora 34.
What is z80asm
z80asm is an assembler for the Z80 microprocessor. The assembler aims to be portable and complete. Of course it assembles all official mnemonics, but it also aims to assemble the unofficial mnemonics. The assembler was written with the MSX computer in mind as the target platform, but it can be used for any system with a Z80 in it. Some header files with labels of MSX specific addresses (BIOS, BDOS, system variables) are included.
We can use yum
or dnf
to install z80asm
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install z80asm.
Install z80asm on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install z80asm
using dnf
by running the following command:
sudo dnf -y install z80asm
Install z80asm on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install z80asm
using yum
by running the following command:
sudo yum -y install z80asm
How To Uninstall z80asm on Fedora 34
To uninstall only the z80asm
package we can use the following command:
sudo dnf remove z80asm
z80asm Package Contents on Fedora 34
/usr/bin/z80asm
/usr/lib/.build-id
/usr/lib/.build-id/a7
/usr/lib/.build-id/a7/7e8ceaa8fad36acc6bc57e3f45775ab25ce8a5
/usr/share/doc/z80asm
/usr/share/doc/z80asm/COPYING
/usr/share/doc/z80asm/ChangeLog
/usr/share/doc/z80asm/GPL3
/usr/share/doc/z80asm/examples
/usr/share/doc/z80asm/examples/Makefile
/usr/share/doc/z80asm/examples/hello.asm
/usr/share/doc/z80asm/examples/macro.asm
/usr/share/doc/z80asm/examples/seek.asm
/usr/share/man/man1/z80asm.1.gz
/usr/share/z80asm
/usr/share/z80asm/msx-bios.asm
/usr/share/z80asm/msx2+-bios.asm
/usr/share/z80asm/msx2-bios.asm
/usr/share/z80asm/msx2-subrom.asm
/usr/share/z80asm/msxturbor-bios.asm
References
Summary
In this tutorial we learn how to install z80asm
on Fedora 34 using yum and dnf.