📄 enp.lnj
字号:
## This script is part of Jelie.# # it has to be called with the following arguments:## filename address_in_flash number_of_words## filename: complete file name. If not valid, the script will fail.## address_in_flash: hexadecimal address beteween 0 and 1 MB## number_of_words: size of the file to write, in 16 bits words units.# Equivalent to the size of the file divided by 2.# load the remote programload flash/flash.bin# load data to writeload \1 a1000000# set destination addressregister 0 \2# where the data is stored (@16MB)register 1 a1000000# number of words to writeregister 2 \3# FP = 0register 11 0# IP = 0register 12 0# SP = 0xA0000000 + 12 MBregister 13 a0c00000# LR = _endlessregister 14 a0000020# PC = erase_and_programregister 15 a0000550continue
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -