YuminChiang

@YuminChiang

Joined on Oct 22, 2022

  • 國立臺北大學資工系江宥旻 Micro architecture of the 8086/8088 microprocessor 內部接腳 ![8088-8086](https://i.imgur.com/CroBGyD.png =500x) 匯流排 BUS 位址匯流排 Address BUS$A_0 \sim A_{19}$,共20條線
     Like 1 Bookmark
  • 國立臺北大學資工系江宥旻 8088/8086 Microprocessors ![](https://i.imgur.com/CroBGyD.png =500x) Minimum-mode & Maximum-mode systems :::success CPU去Memory抓Data和Instruction的簡略說明 CPU$(CS\times16 + IP)$得到記憶體位址,CPU透過位址線$AD_0 \sim AD_{19}$送至ABL(DFF),當ABL觸發時(ALE控制CLK),把位址送去Memory,再利用Decoder解碼,讓記憶體知道資料是存在哪一塊,此時輸出會被Latch住,$AD_0 \sim AD_{19}$就可以當作資料線使用,取得資料或指令。
     Like 1 Bookmark
  • 國立臺北大學資工系江宥旻 Introducion This chapter will cover following instructions Flag-Control instructions Compare instructions Control Flow and the Jump instructions Subroutines and subroutine-handling instructions Loop and Loop-Handling instructions
     Like  Bookmark
  • 國立臺北大學資工系江宥旻 8086/8088軟體架構 Software Architecture of 8088 and 8086 microprocessors 組合語言程式設計 Assembly Language Programming 8086程式設計 - 整數指令與運算 8088/8086 programming - Integer instructions and computations
     Like  Bookmark
  • 媒體與社會化期末報告 資工二 江宥旻 在電腦上寫一篇文章或者筆記的時候,你會選擇什麽軟體呢? 微軟的Word Apple的Pages Markdown
     Like  Bookmark
  • 閉區間 int l = -1, r = arr.size(); while (l + 1 < r) { int mid = (l + r) / 2; if (arr[mid] >= target) r = mid; else l = mid; }
     Like  Bookmark
  • 國立臺北大學資工系江宥旻 Data transfer instructions MOV Copy value from source operand to destination operand XCHG
     Like  Bookmark
  • 國立臺北大學資工系江宥旻 Converting assembly language instruction to machine code Machine code instructions of the 8088 vary in the number of bytes used to encode them Single byte instruction Double bytes instruction and above General instruction format graph TB
     Like 1 Bookmark
  • 20221028 江宥旻 張晉漢 黃智鍇 梁銘牲 鄭名傑 :::info 實驗目的 以麵包版實現真值表中的實體電路 輸出需接$LED$串聯限流電阻$1k\Omega$ 輸入需用指撥開關控制 以$Verilog$實現模擬電路,並且含驗證波形
     Like  Bookmark
  • 國立臺北大學資工系江宥旻 編譯 python xxx.py python3 xxx.py 變數 命名規則
     Like 1 Bookmark
  • 411085056 資工二 江宥旻 Please use the EMU86 emulator to complete following problems Please execute following instructions and find the content of following registers, AX, BX, and following flags CF, AF, PF, SF, ZF, OF after each instruction executed. MOV AX, 0EA34H MOV BX, 03D25H ADD AX, BX SUB AX, 01220H
     Like 1 Bookmark
  • 國立臺北大學資工系江宥旻 OPA 晶片特性 可作為線性無失真放大,故稱線性IC 可設計為各種類比訊號的處理電路,故稱類比IC :::success Digital signal v.s. Analog signal Digital signal : 兩值信號 Analog signal : 多值信號
     Like  Bookmark
  • 國立臺北大學資工系江宥旻 Software:The microcomputer program Hierarchy of Programming Language High Level Languageint a = 0, b = 0; a = 2; b = 5; a = a * a + 3 * b + 6; printf("The Integer: %d", a);
     Like  Bookmark