這個網誌中的熱門文章
C# 井字遊戲
作者:
Dragonyue
-
開始畫面。 遊戲畫面。 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace CSharp_井字遊戲 { public partial class Form1 : Form { public Form1() { InitializeComponent(); Symbol1_tb.TextChanged += SymbolTextChenge; Symbol2_tb.TextChanged += SymbolTextChenge; Symbol1_tb.MouseClick += Symbol_tb_MouseClick; Symbol2_tb.MouseClick += Symbol_tb_MouseClick; } private void Symbol_tb_MouseClick(object sender, MouseEventArgs e) { TextBox tb = sender as TextBox; tb.SelectAll(); } private void SymbolTextChenge(object sender, EventArgs e) { TextBox tb = sender as TextBox; if (tb.TextLength >= 2) { tb.SelectAll(); ...
計算機組織與結構 筆記
作者:
Dragonyue
-
1. Hardware open → Connection Interface 2. Software open → 允許使用者使用系統資源 L1 Cache 因為管線(pipeline)運作 所以分為兩個Cache → Instruction Cache → Data Cache 指令週期 F → D → E → S F : Fetch Instruction. 擷取指令 D : Decoding. 指令解碼 E : Execution. 執行 S : Store Result. 回存結果 DDR(Double Data Rate) SDRAM使用PLL(Phase Locked Loops. 鎖相迴路 )電路產生多個Clock DDR1 → 兩個Clock DDR2 → 四個Clock DDR3 → 八個Clock DDR4 → 十六個Clock Printer 1. Dedicated Device. 專用裝置 2. Speed A. RPS (Rows per Second) or CPS (Character per Second) → Inject Printer(點陣式印表機) B. PPM (Page per Minute) 3. Interface A. Centronic B. USB Disk 1. Physical Address A. Cylinder 磁柱 B. Head 磁頭 C. Sector 磁區 2. Logic Address → LBA (Lo...
留言
張貼留言