Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 630 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 630 Bytes

Triton Tools

This repository contains tools for use with the Triton architecture and CPU family.

Currently it only contains a very basic assembler (trasm) and disassembler (detrasm.)

Usage

The following command will build all the tools and place them in the bin directory:

make

To assemble a .tras source into a ternary program and output it to a file:

cat path/to/file.tras | bin/trasm > path/to/output.bct

To disassemble a ternary program into an instruction listing and print it to standard output:

cat path/to/file.bct | bin/detrasm