boot_f92_iar.s
来自「zilog的实时操作系统RZK,可以移植到多种处理器上」· S 代码 · 共 47 行
S
47 行
;********************************************************************************
; Copyright 2004, ZiLOG Inc. *
; All Rights Reserved *
; *
; This is UNPUBLISHED PROPRIETARY SOURCE CODE of ZiLOG Inc., and might *
; contain proprietary, confidential and trade secret information of *
; ZiLOG, our partners and parties from which this code has been licensed. *
; *
; The contents of this file may not be disclosed to third parties, copied or *
; duplicated in any form, in whole or in part, without the prior written *
; permission of ZiLOG Inc. *
; *
; Copyright 2001, Metro Link, Inc. *
; All Rights Reserved *
; *
; This is UNPUBLISHED PROPRIETARY SOURCE CODE of Metro Link, Inc. and may *
; contain proprietary, confidential and trade secret information of *
; Metro Link, Inc. and/or its partners. *
; *
; The contents of this file may not be disclosed to third parties, copied or *
; duplicated in any form, in whole or in part, without the prior written *
; permission of Metro Link, Inc. *
;********************************************************************************
.ASSUME ADL=1
;*** Enable Internal SRAM
EXTERN Internal_Ram
ld hl, Internal_Ram
ld a, (hl)
out0 (RAM_CTL), a
inc hl
ld a, (hl)
out0 (RAM_ADDR_U), a
;*** Enable Internal FLASH
EXTERN Internal_Flash
ld hl, Internal_Flash
ld a, (hl)
out0 (FLASH_CTRL), a
inc hl
ld a, (hl)
out0 (FLASH_ADDR_U), a
;*** Continue initializing the remaining peripherals.
#include "boot_L92_iar.s"
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?