博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
gas中嵌入数据.incbin
阅读量:5809 次
发布时间:2019-06-18

本文共 799 字,大约阅读时间需要 2 分钟。

.incbin "file"[,skip[,count]]

  The incbin directive includes file verbatim at the current location. You can control the search paths used with the ‘-I’ command-line option . Quotation marks are required around file. The skip argument skips a number of bytes from the start of the file. The count argument indicates the maximum number of bytes to read. Note that the data is not aligned in any way, so it is the user’s responsibility to make sure that proper alignment is provided both before and after the incbin directive.

查看arch/unicore/boot/compressed下的piggy.S:

.section .piggydata,#alloc

.globl input_data
input_data:
  

  .incbin "arch/unicore/boot/compressed/piggy.gz"

.globl input_data_end
input_data_end:

在这里运用汇编指示符,将由Image压缩而成的piggy.gz嵌入到 piggy.S中,注意此处额外声明了两个全局符号:input_data   input_data_end

转载地址:http://bjjbx.baihongyu.com/

你可能感兴趣的文章
聊一聊log4j2配置文件log4j2.xml
查看>>
NeHe OpenGL教程 第七课:光照和键盘
查看>>
修改上一篇文章的node.js代码,支持默认页及支持中文
查看>>
Php实现版本比较接口
查看>>
删除设备和驱动器中软件图标
查看>>
第四章 TCP粘包/拆包问题的解决之道---4.1---
查看>>
html语言
查看>>
从源码看集合ArrayList
查看>>
spring-boot支持websocket
查看>>
菜鸟笔记(一) - Java常见的乱码问题
查看>>
我理想中的前端工作流
查看>>
记一次Git异常操作:将多个repository合并到同一repository的同一分支
查看>>
CodeIgniter 3.0 新手捣鼓源码(一) base_url()
查看>>
Chrome 广告屏蔽功能不影响浏览器性能
查看>>
vSphere 6将于2月2日全球同步发表
查看>>
Android状态栏实现沉浸式模式
查看>>
让你的APP实现即时聊天功能
查看>>
iOS 绝对路径和相对路径
查看>>
使用Openfiler搭建ISCSI网络存储
查看>>
应用新安全组 - 每天5分钟玩转 OpenStack(116)
查看>>