tis100

Reimplementation of Zachtronics TIS-100 as a TUI game
git clone https://git.sinitax.com/sinitax/tis100
Log | Files | Refs | sfeed.txt

asm.h (240B)


      1#pragma once
      2
      3#include "tpu.h"
      4
      5#include <stdio.h>
      6
      7size_t asm_print_inst(char *buf, size_t n, struct tpu_inst *inst, size_t max);
      8void tis_load_asm(struct tis *tis, const char *filepath);
      9void tis_load(struct tis *tis, const char **argv);