摘要: 以太网 class Ethernet { static readonly size = 14; get Destination(): string { return [ this.view.getUint8(0), this.view.getUint8(1), this.view.getUint8( 阅读全文
posted @ 2020-09-17 14:49 Ajanuw 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 赋值过程 int a = 1; int b = a++; x86 反汇编: int a = 1; 00D06428 C7 45 F8 01 00 00 00 mov dword ptr [a],1 int b = a++; 00D0642F 8B 45 F8 mov eax,dword ptr [a 阅读全文
posted @ 2020-09-17 02:22 Ajanuw 阅读(157) 评论(0) 推荐(0) 编辑