1# Copyright (c) 2024 Antmicro <www.antmicro.com>
2# SPDX-License-Identifier: Apache-2.0
3
4if SOC_CORTEX_R8_VIRTUAL
5
6config NUM_IRQS
7	default 220
8
9config SYS_CLOCK_HW_CYCLES_PER_SEC
10	default 5000000
11
12DT_CHOSEN_Z_FLASH := zephyr,flash
13
14config FLASH_SIZE
15	default $(dt_chosen_reg_size_int,$(DT_CHOSEN_Z_FLASH),0,K)
16
17config FLASH_BASE_ADDRESS
18	default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_FLASH))
19
20endif # SOC_CORTEX_R8_VIRTUAL
21