1/*
2 * Copyright 2008, Fran��ois Revol, revol@free.fr
3 * Distributed under the terms of the MIT License.
4 */
5
6#include <OS.h>
7
8#include "disasm_arch.h"
9
10status_t
11disasm_arch_dump_insns(addr_t where, int count, addr_t baseAddress,
12	int backCount)
13{
14	return ENOENT;
15}
16
17status_t
18disasm_arch_init()
19{
20	return ENOENT;
21}
22
23status_t
24disasm_arch_fini()
25{
26	return ENOENT;
27}
28
29
30