]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/RX113-RSK_Renesas_e2studio/src/cg_src/r_cg_resetprg.c
Baseline new RX projects before refining and tidying them up.
[freertos] / FreeRTOS / Demo / RX113-RSK_Renesas_e2studio / src / cg_src / r_cg_resetprg.c
diff --git a/FreeRTOS/Demo/RX113-RSK_Renesas_e2studio/src/cg_src/r_cg_resetprg.c b/FreeRTOS/Demo/RX113-RSK_Renesas_e2studio/src/cg_src/r_cg_resetprg.c
deleted file mode 100644 (file)
index 34c143e..0000000
+++ /dev/null
@@ -1,78 +0,0 @@
-/***********************************************************************************************************************\r
-* DISCLAIMER\r
-* This software is supplied by Renesas Electronics Corporation and is only intended for use with Renesas products.\r
-* No other uses are authorized. This software is owned by Renesas Electronics Corporation and is protected under all\r
-* applicable laws, including copyright laws. \r
-* THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIESREGARDING THIS SOFTWARE, WHETHER EXPRESS, IMPLIED\r
-* OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
-* NON-INFRINGEMENT.  ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY\r
-* LAW, NEITHER RENESAS ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE FOR ANY DIRECT,\r
-* INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR\r
-* ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\r
-* Renesas reserves the right, without notice, to make changes to this software and to discontinue the availability \r
-* of this software. By using this software, you agree to the additional terms and conditions found by accessing the \r
-* following link:\r
-* http://www.renesas.com/disclaimer\r
-*\r
-* Copyright (C) 2015 Renesas Electronics Corporation. All rights reserved.\r
-***********************************************************************************************************************/\r
-\r
-/***********************************************************************************************************************\r
-* File Name    : r_cg_resetprg.c\r
-* Version      : Code Generator for RX113 V1.02.01.02 [28 May 2015]\r
-* Device(s)    : R5F51138AxFP\r
-* Tool-Chain   : CCRX\r
-* Description  : Reset program.\r
-* Creation Date: 21/09/2015\r
-***********************************************************************************************************************/\r
-\r
-/***********************************************************************************************************************\r
-Pragma directive\r
-***********************************************************************************************************************/\r
-/* Start user code for pragma. Do not edit comment generated here */\r
-/* End user code. Do not edit comment generated here */\r
-\r
-/***********************************************************************************************************************\r
-Includes\r
-***********************************************************************************************************************/\r
-#include "r_cg_macrodriver.h"\r
-#include <machine.h>\r
-#include <_h_c_lib.h>\r
-//#include <stddef.h> // Remove the comment when you use errno\r
-//#include <stdlib.h> // Remove the comment when you use rand()\r
-#include "r_cg_stacksct.h"\r
-#include "r_cg_userdefine.h"\r
-\r
-/***********************************************************************************************************************\r
-Global variables and functions\r
-***********************************************************************************************************************/\r
-\r
-#ifdef __cplusplus\r
-extern "C" {\r
-#endif\r
-void PowerON_Reset(void);\r
-void main(void);\r
-#ifdef __cplusplus\r
-}\r
-#endif\r
-\r
-#define PSW_init  0x00010000        /* PSW bit pattern */\r
-#define FPSW_init 0x00000000        /* FPSW bit base pattern */\r
-\r
-#pragma section ResetPRG            /* output PowerON_Reset to PResetPRG section */\r
-\r
-#pragma entry PowerON_Reset\r
-\r
-void PowerON_Reset(void)\r
-{\r
-    set_intb(__sectop("C$VECT"));\r
-\r
-    _INITSCT();                     /* Initialize Sections */\r
-    HardwareSetup();                /* Use Hardware Setup */\r
-    nop();\r
-    set_psw(PSW_init);              /* Set Ubit & Ibit for PSW */\r
-    main();\r
-    brk();\r
-}\r
-/* Start user code for adding. Do not edit comment generated here */\r
-/* End user code. Do not edit comment generated here */\r