xref: /haiku/src/add-ons/kernel/debugger/disasm/ppc/disasm_arch.cpp (revision f2b4344867e97c3f4e742a1b4a15e6879644601a)
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 
10 status_t
11 disasm_arch_dump_insns(addr_t where, int count, addr_t baseAddress,
12 	int backCount)
13 {
14 	return ENOENT;
15 }
16 
17 status_t
18 disasm_arch_init()
19 {
20 	return ENOENT;
21 }
22 
23 status_t
24 disasm_arch_fini()
25 {
26 	return ENOENT;
27 }
28 
29 
30