📄 tvpuboot.inc
字号:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Copyright 2004 by Texas Instruments Incorporated. All rights reserved.
;; Property of Texas Instruments Incorporated. Restricted rights to use,
;; duplicate or disclose this code are granted through contract.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; $Workfile: TvpUboot.inc $
;; $Revision: $
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; $Description: $
;;
;; Assembly include file for TvpUboot.asm
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; $History: uboot.inc $
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; ***************
; arm926 stacks
; ***************
TVP_SVC_STACK_SIZE .set 64*4 ; size of svc stack in words
TVP_FIQ_STACK_SIZE .set 128*4 ; size of fiq stack in words
TVP_IRQ_STACK_SIZE .set 128*4 ; size of irq stack in words
TVP_UDF_STACK_SIZE .set 32*4 ; size of svc stack in words
TVP_DAB_STACK_SIZE .set 32*4 ; size of dab stack in words
; 1KB Total size
; ***************
; note the order !
; ***************
TVP_SVC_STACK .set TVP_DTCM_TOP-4 ; supv stack
TVP_FIQ_STACK .set TVP_SVC_STACK-TVP_SVC_STACK_SIZE ; fiq stack
TVP_IRQ_STACK .set TVP_FIQ_STACK-TVP_FIQ_STACK_SIZE ; irq stack
TVP_DAB_STACK .set TVP_IRQ_STACK-TVP_IRQ_STACK_SIZE ; data abort stack
TVP_UDF_STACK .set TVP_DAB_STACK-TVP_DAB_STACK_SIZE ; udf stack
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -