How To Install z80asm on Fedora 36

In this tutorial we learn how to install z80asm in Fedora 36. z80asm is Z80 Assembler

Introduction

In this tutorial we learn how to install z80asm on Fedora 36.

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 36. In this tutorial we discuss both methods but you only need to choose one of method to install z80asm.

Install z80asm 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 z80asm using dnf by running the following command:

sudo dnf -y install z80asm

Install z80asm 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 z80asm using yum by running the following command:

sudo yum -y install z80asm

How To Uninstall z80asm on Fedora 36

To uninstall only the z80asm package we can use the following command:

sudo dnf remove z80asm

z80asm Package Contents on Fedora 36

/usr/bin/z80asm
/usr/lib/.build-id
/usr/lib/.build-id/0c
/usr/lib/.build-id/0c/71a0d818cc7e177670d491d69f5e54d7bb521c
/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 36 using yum and [dnf]((/fedora/36/dnf/).