/* ********************************************************************** Copyright (c)2021 Arkmicro Technologies Inc. All Rights Reserved Filename: Entry.c Version : 1.00 Date : 2021.08.20 Author : Sim *********************************************************************** */ #define DDR_BASE 0x60000000 void main(void) { void (*funPtr)(void); funPtr = (void (*)(void))(DDR_BASE); funPtr(); }