repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vfs: check userland buffers before reading them.
[haiku.git]
/
src
/
add-ons
/
kernel
/
debugger
/
disasm
/
m68k
/
disasm_arch.cpp
blob
00d68f7adf1a2405e8c93312a651112d2298b346
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