diff --git a/src/add-ons/kernel/debugger/disasm/arm/Jamfile b/src/add-ons/kernel/debugger/disasm/arm/Jamfile new file mode 100644 index 0000000000..984b65844d --- /dev/null +++ b/src/add-ons/kernel/debugger/disasm/arm/Jamfile @@ -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 + ; + diff --git a/src/add-ons/kernel/debugger/disasm/arm/disasm_arch.cpp b/src/add-ons/kernel/debugger/disasm/arm/disasm_arch.cpp new file mode 100644 index 0000000000..00d68f7adf --- /dev/null +++ b/src/add-ons/kernel/debugger/disasm/arm/disasm_arch.cpp @@ -0,0 +1,29 @@ +/* + * Copyright 2008, François Revol, revol@free.fr + * Distributed under the terms of the MIT License. + */ + +#include + +#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; +} + +