博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Xilinx SDK中内存值读法
阅读量:5298 次
发布时间:2019-06-14

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

对FPGA的IP核的控制说白了就是对寄存器的控制,而寄存器又是放在RAM中的,

所以调试时读RAM也是很重要的一步。

 

 

记得在某个手册中看到,我的Atyls的内存是little endian,

所以读内存的时候还要进行转换顺序。

 

摘抄一段Big/Little Endian的解释:

Big-endian and little-endian are terms that describe the order in which a sequence of s are stored in computer memory. Big-endian is an order in which the "big end" (most significant value in the sequence) is stored first (at the lowest storage address). Little-endian is an order in which the "little end" (least significant value in the sequence) is stored first. 

 

那么所谓Little Endian,就是小字节在前,大字节在后。

对于16bit,举个例子: 0x12 34,以Little Endian存储则是 34 12。

对于32bit,举个例子:0x12 34 56 78,以Little Endian存储则是 78 56 34 12。

 

 

转载于:https://www.cnblogs.com/elitezhe/p/little-endian-s6-fpga-memory.html

你可能感兴趣的文章
安卓当中的线程和每秒刷一次
查看>>
每日一库:Modernizr.js,es5-shim.js,es5-safe.js
查看>>
ajax连接服务器框架
查看>>
wpf样式绑定 行为绑定 事件关联 路由事件实例
查看>>
利用maven管理项目之POM文件配置
查看>>
FUSE-用户空间文件系统
查看>>
TCL:表格(xls)中写入数据
查看>>
Oracle事务
查看>>
String类中的equals方法总结(转载)
查看>>
AVL数
查看>>
属性动画
查看>>
标识符
查看>>
路由跟踪工具0trace
查看>>
给大家分享一张CSS选择器优选级图谱 !
查看>>
Win7中不能调试windows service
查看>>
boost库使用:vs2013下boost::container::vector编译出错解决
查看>>
通过httplib2 探索的学习的最佳方式
查看>>
快来熟练使用 Mac 编程
查看>>
Node.js 入门:Express + Mongoose 基础使用
查看>>
plsql使用,为什么可以能看见其他用户的表
查看>>