64tass command not found

In this troubleshooting guide we learn how to fix 64tass command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

64tass: command not found

or when using sudo you get the following error message

sudo: 64tass: command not found

Solutions to 64tass: command not found

How To Fix 64tass: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu 64tass is provided by 64tass package.

64tass is:

Multi pass optimizing macro assembler for the 65xx series of processors. Key features:

  • Familiar syntax to Omicron TASS and TASM
  • Supports 6502, 65C02, R65C02, W65C02, 65CE02, 65816, DTV, 65EL02, 4510
  • Arbitrary-precision integers and bit strings, double precision floating point numbers
  • Character and byte strings, array arithmetic
  • Handles UTF-8, UTF-16 and 8 bit RAW encoded source files, Unicode character strings
  • Supports Unicode identifiers with compatibility normalization and optional case insensitivity
  • Built-in `linker’ with section support
  • Various memory models, binary targets and text output formats (also Hex/ S-record)
  • Assembly and label listings available for debugging or exporting
  • Conditional compilation, macros, structures, unions, scopes

To fix this problem, we can install more using the command below.

sudo apt-get -y install 64tass

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install 64tass.

sudo apt -y install 64tass

Or if you have aptitude installed you can use the following command.

sudo aptitude install 64tass

Summary

In this tutorial we learn how to fix 64tass command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.