How To Install d52 on Fedora 34

d52 is Disassemblers for 8051, 8048, and Z80 families

Introduction

In this tutorial we learn how to install d52 on Fedora 34.

What is d52

D52 is collection of disassemblers for the 8051, 8048, and Z80 families of microcontrollers and microprocessors.

We can use yum or dnf to install d52 on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install d52.

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

sudo dnf -y install d52

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

sudo yum -y install d52

How To Uninstall d52 on Fedora 34

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

sudo dnf remove d52

d52 Package Contents on Fedora 34

/usr/bin/d48
/usr/bin/d52
/usr/bin/dz80
/usr/lib/.build-id
/usr/lib/.build-id/4e
/usr/lib/.build-id/4e/6925ef3d34e2d8d60a1e6e5b9b4655e461c8b5
/usr/lib/.build-id/7e
/usr/lib/.build-id/7e/a4f16d2085be5bdc14d1d61e987590ef729ba6
/usr/lib/.build-id/bd
/usr/lib/.build-id/bd/c8476b3694b8dd0fe5b244a0a63d0b1018c3bb
/usr/share/d52
/usr/share/d52/cyclefiles
/usr/share/d52/cyclefiles/8051.cyc
/usr/share/d52/cyclefiles/ADuC84x.cyc
/usr/share/d52/cyclefiles/AT89LP.cyc
/usr/share/d52/cyclefiles/DS80C320.cyc
/usr/share/d52/cyclefiles/DS89C4x0.cyc
/usr/share/d52/cyclefiles/MSC12xx.cyc
/usr/share/d52/cyclefiles/SiLabs.cyc
/usr/share/d52/cyclefiles/W77e.cyc
/usr/share/d52/cyclefiles/upsd33xx.cyc
/usr/share/d52/examples
/usr/share/d52/examples/BENCH0.HEX
/usr/share/d52/examples/BENCH0.LST
/usr/share/d52/examples/Bench0.ctl
/usr/share/d52/examples/bench0.a51
/usr/share/d52/examples/bench0.aduc84x.d52
/usr/share/d52/examples/bench0.at89lp.d52
/usr/share/d52/examples/bench0.ds80c320.d52
/usr/share/d52/examples/bench0.ds89c4x0.d52
/usr/share/d52/examples/bench0.msc12xx.d52
/usr/share/d52/examples/bench0.silabs.d52
/usr/share/d52/examples/bench0.w77e.d52
/usr/share/d52/examples/z.bin
/usr/share/d52/examples/z.ctl
/usr/share/d52/examples/z.z80
/usr/share/doc/d52
/usr/share/doc/d52/COPYING
/usr/share/doc/d52/README
/usr/share/doc/d52/cycle_counting.doc
/usr/share/doc/d52/cycle_counting.htm
/usr/share/doc/d52/cycle_counting.rtf
/usr/share/doc/d52/d52manual.html
/usr/share/doc/d52/dz80-d48addendum.html

References

Summary

In this tutorial we learn how to install d52 on Fedora 34 using yum and dnf.