?? cpu.asm
字號:
;**********************************************************
;
; The following software is for demonstration purposes only.
; It is not fully tested, nor validated in order to fullfill
; its task under all circumstances. Therefore, this software
; or any part of it must only be used in an evaluation
; laboratory environment.
; This software is subject to the rules of Accemic's
; standard DISCLAIMER, available at www.accemic.com.
;
; Copyright (c) 2001-2003 Accemic GmbH & Co. KG
; All rights reserved
;
;**********************************************************
;
; Module name : cpu.asm
; Version : 1.0
; Date of creation. : 07.03.2003
; Last Modification : 07.03.2003
; Authors : Rainer Harthaus (RH)
;
;**********************************************************
;
; Description:
; selection of the CPU specific .asm file
;
;**********************************************************
;
; History
;
; Vers * Datum * Name * Subject
; 1.00 * 07.03.03 * RH * first creation
;
;**********************************************************
;
; Please visit www.accemic.com
; for updates and other valueable developer ressources
;
;*********************************************************/
#include "cpu.h"
#if __CPU_MB90385_SERIES
#include "mb90385.asm"
#endif
#if __CPU_MB90390_SERIES
#include "mb90390.asm"
#endif
#if __CPU_MB90420_SERIES
#include "mb90420.asm"
#endif
#if __CPU_MB90425_SERIES
#include "mb90425.asm"
#endif
#if __CPU_MB90435_SERIES
#include "mb90435.asm"
#endif
#if __CPU_MB90440_SERIES
#include "mb90440.asm"
#endif
#if __CPU_MB90455_SERIES
#include "mb90455.asm"
#endif
#if __CPU_MB90460_SERIES
#include "mb90460.asm"
#endif
#if __CPU_MB90470_SERIES
#include "mb90470.asm"
#endif
#if __CPU_MB90495_SERIES
#include "mb90495.asm"
#endif
#if __CPU_MB90520_SERIES
#include "mb90520.asm"
#endif
#if __CPU_MB90540_SERIES
#include "mb90540.asm"
#endif
#if __CPU_MB90545_SERIES
#include "mb90545.asm"
#endif
#if __CPU_MB90550A_SERIES
#include "mb90550.asm"
#endif
#if __CPU_MB90560_SERIES
#include "mb90560.asm"
#endif
#if __CPU_MB90565_SERIES
#include "mb90565.asm"
#endif
#if __CPU_MB90570_SERIES
#include "mb90570.asm"
#endif
#if __CPU_MB90580_SERIES
#include "mb90580.asm"
#endif
#if __CPU_MB90590_SERIES
#include "mb90590.asm"
#endif
#if __CPU_MB90595_SERIES
#include "mb90595.asm"
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -