From 04ecd4829b211bd01c6a88bb08f97f35d9cc9437 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Wed, 9 Jan 2019 18:31:17 +0800 Subject: [PATCH] suite/capstone_get_setup.c: add MOS65XX support --- suite/capstone_get_setup.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/suite/capstone_get_setup.c b/suite/capstone_get_setup.c index 6934cd53..612a7d67 100644 --- a/suite/capstone_get_setup.c +++ b/suite/capstone_get_setup.c @@ -64,6 +64,10 @@ int main() printf("evm=1 "); } + if (cs_support(CS_ARCH_MOS65XX)) { + printf("mox65xx=1 "); + } + if (cs_support(CS_SUPPORT_DIET)) { printf("diet=1 "); }