⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config.in

📁 用VHDL语言实现的ARM处理器的标准内核的源代码程序
💻 IN
字号:
#
# For a description of the syntax of this configuration file,
# see extra/config/Kconfig-language.txt
#
mainmenu "Core Configuration"

choice
	prompt "Target Architecture"
	default TARGET_arm
	help
	  Stuff

config TARGET_arm
	bool "arm"

config TARGET_sparc
	bool "sparc"

config TARGET_m68k
	bool "m68k"

endchoice



menu "Target Architecture Features and Options"

if TARGET_arm
source "build/config/Configs/Config.arm"
endif

if TARGET_sparc
source "build/config/Configs/Config.sparc"
endif

source "build/config/Configs/Config.in.arch"

endmenu

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -