摘要:
在minicom中自动换行:Ctrl+A Z W组合键的用法是:先按Ctrl+A组合键,然后松开这两个键,再按Z键。另外还有一些常用的组合键。S键:发送文件到目标系统中;W键:自动卷屏。当显示的内容超过一行之后,自动将后面的内容换行。这个功能在查看内核的启动信息时很有用;C键:清除屏幕的显示内容;B键:浏览Minicom的历史显示;X键:退出Minicom,会提示确认退出。 阅读全文
摘要:
#if defined(uic_OSD_RES_1920x1080)#define uim_1920toHRes(h) (h)#define uim_1080toVRes(v) (v)#elif defined(uic_OSD_RES_1366x768)#define uim_1920toHRes(h) (((h)*683)/960)#define uim_1080toVRes(v) (((v)*32)/45)#elif defined(uic_OSD_RES_960x540)#define uic_GP_COORD_SYS gpe_COOR... 阅读全文
摘要:
objdump -S a.out 反汇编!!!!!objdump -d a.out 反汇编 a@65-server:~/learn$ objdump -p, --private-headers Display object format specific file header contents -h, --[section-]headers Display the contents of the section headers -x, --all-headers Display the contents of all headers -d, --d... 阅读全文