disasm: Add stub for ARM

This commit is contained in:
François Revol
2013-09-29 03:33:19 +02:00
parent 4d65f429d0
commit 3d2c989bb5
2 changed files with 39 additions and 0 deletions
@@ -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;
}