wamr: tweak the defaults according to the new ARCH kconfig options
diff --git a/interpreters/wamr/Kconfig b/interpreters/wamr/Kconfig
index 4604e33..fbe4006 100644
--- a/interpreters/wamr/Kconfig
+++ b/interpreters/wamr/Kconfig
@@ -49,10 +49,12 @@
 
 config INTERPRETERS_WAMR_AOT_WORD_ALIGN_READ
 	bool "Make WAMR AOT loader use word-aligned read"
+	default y if ARCH_TEXT_HEAP_WORD_ALIGNED_READ
 	default n
 
 config INTERPRETERS_WAMR_MEM_DUAL_BUS_MIRROR
 	bool "Make WAMR AOT loader aware of separate instruction/data memory mapping"
+	default y if ARCH_TEXT_HEAP_SEPARATE_DATA_ADDRESS
 	default n
 
 choice