disasm: Add stub for ARM
This commit is contained in:
@@ -0,0 +1,10 @@
|
|||||||
|
SubDir HAIKU_TOP src add-ons kernel debugger disasm $(TARGET_ARCH) ;
|
||||||
|
|
||||||
|
SubDirHdrs [ FDirName $(SUBDIR) $(DOTDOT) ] ;
|
||||||
|
|
||||||
|
UsePrivateHeaders kernel ;
|
||||||
|
|
||||||
|
KernelStaticLibrary disasm_arch.a :
|
||||||
|
disasm_arch.cpp
|
||||||
|
;
|
||||||
|
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2008, François Revol, [email protected]
|
||||||
|
* Distributed under the terms of the MIT License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <OS.h>
|
||||||
|
|
||||||
|
#include "disasm_arch.h"
|
||||||
|
|
||||||
|
status_t
|
||||||
|
disasm_arch_dump_insns(addr_t where, int count, addr_t baseAddress,
|
||||||
|
int backCount)
|
||||||
|
{
|
||||||
|
return ENOENT;
|
||||||
|
}
|
||||||
|
|
||||||
|
status_t
|
||||||
|
disasm_arch_init()
|
||||||
|
{
|
||||||
|
return ENOENT;
|
||||||
|
}
|
||||||
|
|
||||||
|
status_t
|
||||||
|
disasm_arch_fini()
|
||||||
|
{
|
||||||
|
return ENOENT;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user