/* Copyright (C) 2014-2015 Ben Kurtovic Released under the terms of the MIT License. See LICENSE for details. */ #include "disassembler.h" /* Disassemble the binary file at the input path into z80 source code. Return true if the operation was a success and false if it was a failure. Errors are printed to STDOUT; if the operation was successful then nothing is printed. */ bool disassemble(const char* src_path, const char* dst_path) { return true; }