随笔分类 - 系统启动前引导程序
bootloader or BIOS
发表于 2020-07-11 18:23阅读:517评论:0推荐:0
摘要:! ! setup.s (C) 1991 Linus Torvalds ! ! setup.s is responsible for getting the system data from the BIOS, ! and putting them into the appropriate plac
阅读全文 »
发表于 2020-07-11 18:21阅读:359评论:0推荐:0
摘要:/* * linux/boot/head.s * * (C) 1991 Linus Torvalds */ /* * head.s contains the 32-bit startup code. * * NOTE!!! Startup happens at absolute address 0x
阅读全文 »
发表于 2020-07-11 18:19阅读:520评论:0推荐:0
摘要:! ! SYS_SIZE is the number of clicks (16 bytes) to be loaded. ! 0x3000 is 0x30000 bytes = 196kB, more than enough for current ! versions of linux ! SY
阅读全文 »
发表于 2019-12-16 10:30阅读:2374评论:0推荐:0
摘要:Intel HEX 文件是由一行行符合Intel HEX 文件格式的文本所 构 成的ASCII 文本文件。在Intel HEX 文件中,每一行包含一 个 HEX 记录 。 这 些 记录 由 对应 机器 语 言 码 和/ 或常量 数 据的十六 进 制 编码数 字 组 成。Intel HEX 文件通常用
阅读全文 »
发表于 2019-12-16 10:28阅读:1308评论:0推荐:0
摘要:S-record格式文件是Freescale CodeWarrior编译器生成的后缀名为.S19的程序文件,是一段直接烧写进MCU的ASCII码,英文全称问Motorola format for EEPROM programming。 网上有关S-record格式文件的资料很少,经过我的收集和实验,
阅读全文 »