上一页 1 2 3 4 5 6 7 8 9 ··· 34 下一页
摘要: TODO1:为什么果壳不在 IDU 阶段读出寄存器?而要在后端?是跟超标量、乱序有关系吗? TODO2: 修改PC难道比修改其它寄存器更快吗? TODO3: 长流水线有什么缺点? TODO4: 需要两个存储器吗?优缺点? TODO5: 气泡指令是什么?为什么可以起到阻塞的作用?比起直接阻塞有什么优缺 阅读全文
posted @ 2023-03-21 16:58 yinhuachen 阅读(43) 评论(0) 推荐(0) 编辑
摘要: https://coderwall.com/p/nckasg/map-w-to-w-in-vim vim 中支持 :command WQ wq 但是vscode的vim模式不支持,可以尝试添加 nnoremap ; :(用分号代替冒号),这样就可以避免再打出 :Wa 了 阅读全文
posted @ 2023-03-21 06:36 yinhuachen 阅读(19) 评论(0) 推荐(0) 编辑
摘要: https://developer.aliyun.com/article/1139558?spm=a2c6h.14164896.0.0.658a70a3UaEhQO tar xf nasm-2.14.02.tar.bz2 cd nasm-2.14.02/ BUILD_LIBS=${HOME}/bui 阅读全文
posted @ 2023-03-21 05:32 yinhuachen 阅读(42) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/105069730 在能够使用 qemu + gdb 调试内核之后,怎么连上 vscode 呢? 看看参考的知乎文章,再看看这个视频: https://www.bilibili.com/video/BV19Y41157bK/?spm_id_f 阅读全文
posted @ 2023-03-21 01:55 yinhuachen 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 参考:https://foxsen.github.io/archbase/%E8%AE%A1%E7%AE%97%E6%9C%BA%E7%B3%BB%E7%BB%9F%E6%80%A7%E8%83%BD%E8%AF%84%E4%BB%B7%E4%B8%8E%E6%80%A7%E8%83%BD%E5%8 阅读全文
posted @ 2023-03-20 20:23 yinhuachen 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 写了个这样的代码:a[0] = 1'b1; a[5:1] = '0;结果发现整个 a 信号都会被赋值为0,以后要注意点 阅读全文
posted @ 2023-03-20 11:13 yinhuachen 阅读(193) 评论(0) 推荐(0) 编辑
摘要: git reset --soft [出错之前的 commitID] git stash git checkout 正确的分支 git stash apply git commit .... git push origin 正确的分支 --force (这个操作会直接把远端仓库的相应分支给覆盖掉,所以 阅读全文
posted @ 2023-03-18 03:25 yinhuachen 阅读(33) 评论(0) 推荐(0) 编辑
摘要: https://github.com/microsoft/WSL/issues/6389 sudo apt-get install -y bochsbiosandsudo apt-get install -y vgabiosmight help 阅读全文
posted @ 2023-03-17 02:41 yinhuachen 阅读(148) 评论(1) 推荐(1) 编辑
摘要: sudo apt --purge remove ... https://askubuntu.com/questions/151941/how-can-you-completely-remove-a-package 阅读全文
posted @ 2023-03-17 02:32 yinhuachen 阅读(15) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/1737095/how-do-i-disassemble-raw-16-bit-x86-machine-code objdump -D -b binary -mi386 -Maddr16,data16 mbr 注意,这个用来反汇 阅读全文
posted @ 2023-03-16 05:29 yinhuachen 阅读(176) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 34 下一页