提交 e09f15e5 创建 作者: 李川's avatar 李川 提交者: 李川

修改实验模板

上级 c9adcafa
......@@ -5,3 +5,6 @@
[submodule "8250"]
path = 8250
url = https://lichuan@www.codecode.net/engintime/Dream-Logic/Intel-classic-chips/8250.git
[submodule "8259A"]
path = 8259A
url = https://lichuan@www.codecode.net/engintime/Dream-Logic/Intel-classic-chips/8259A.git
Subproject commit 0278cc57b2050c74e10bbda5a0b67fb99b83fd58
Subproject commit 4b434cf0833605d141aa66fc8c37357ec9d1afa5
没有这种文件类型的预览
......@@ -87,10 +87,6 @@
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="1350" y="1124">CTS</text>
<polygon fill="#ffff80" points="1560 1224, 1535 1199, 1485 1199, 1460 1224, 1485 1249, 1535 1249, 1560 1224" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="1350" y="1224">RLSD</text>
<polygon fill="#ffff80" points="1560 1324, 1535 1299, 1485 1299, 1460 1324, 1485 1349, 1535 1349, 1560 1324" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="1350" y="1324">INTRPT</text>
......@@ -129,7 +125,7 @@
<rect fill="#000000" fill-opacity="0.5" height="50" stroke="#a0a0a4" stroke-width="1" width="160" x="410" y="574"/>
<text alignment-baseline="after-edge" fill="#ff0000" font-family="微软雅黑" font-size="30" font-weight="400" text-anchor="start" x="470" y="621">0c</text>
<text alignment-baseline="after-edge" fill="#ff0000" font-family="微软雅黑" font-size="30" font-weight="400" text-anchor="start" x="470" y="621">c7</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="588" y="620">1</text>
......@@ -275,8 +271,6 @@
<polyline fill="none" points="1560 1024, 1660 1024, 1660 1124, 1560 1124" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1560 1224, 1660 1224, 1660 1124" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="200" font-weight="700" text-anchor="start" x="130" y="254">8250自发自收测试电路</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="260" y="1924">IOR</text>
......@@ -285,6 +279,4 @@
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="560" y="2224">RESET</text>
<circle cx="1660" cy="1124" fill="#0000ff" r="8" stroke="#0000ff" stroke-width="5"/>
</svg>
8259A @ 71946c24
Subproject commit 71946c24fc50851866aa083a344656c277867105
......@@ -39,9 +39,22 @@
<file relativepath="8250\reg_rw.dlsche"/>
<file relativepath="8250\TCL.dlsche"/>
</filefolder>
<file relativepath="README.md"/>
<file relativepath="top.dlsche"/>
<filefolder id="e7283145-8b5c-4f21-95a5-bfc1d08aef4e" name="8259A">
<file relativepath="8259A\8259A.dlsche"/>
<file relativepath="8259A\8259A.pdf"/>
<file relativepath="8259A\acs.dlsche"/>
<file relativepath="8259A\apply.dlsche"/>
<file relativepath="8259A\fsm.dlsche"/>
<file relativepath="8259A\initial.dlsche"/>
<file relativepath="8259A\IRR.dlsche"/>
<file relativepath="8259A\ISR.dlsche"/>
<file relativepath="8259A\PR.dlsche"/>
<file relativepath="8259A\README.md"/>
<file relativepath="8259A\sp.dlsche"/>
</filefolder>
<file relativepath="8250_test.dlsche"/>
<file relativepath="top.dlsche"/>
<file relativepath="README.md"/>
</files>
</project>
;test
;采用中断的方式,通过8250将外设字符传送到cpu内部寄存器bl
.int_table
intr0
.text
cli ; 关中断
; 初始化栈顶地址
mov sp, 0
;初始化用于接收字符的8250芯片
mov al, 0x0f
out 0x81, al ;允许中断
;初始化中断控制器8259芯片
mov al, 0x13
out 0x90, al ; 写ICW1,边沿触发,单片,需要设置ICW4
mov al, 0
out 0x91, al ; 写ICW2,设定IRQ0的中断号为0
out 0x91, al ; 写入ICW4,设定普通全嵌套方式,普通EOI方式(通过发EOI命令结束中断)
out 0x91, al ; 写OCW1,允许全部8级中断请求
sti ; 开中断
BEGIN:
mov al, 0x1a
UP:
out 2, al
inc al
cmp al, 0x84
jnz UP
dec al
DOWN:
out 2, al
dec al
cmp al, 0x19
jnz DOWN
jmp BEGIN
;=============================================
;中断服务程序,当接收器满的时候,触发CPU从8250取数据
intr0:
in al, 0x80 ;将端口0x80数据读入al寄存器
mov bl, al ;再将al移动到bl中
mov al, 0x20
out 0x90, al ;中断结束命令eoi
iret
没有这种文件类型的预览
0001 ;test
0002 .text
0003
0004 BEGIN:
0005 10 01 00 1A mov al, 0x1a
0006
0007 UP:
0008 13 4E 00 02 out 2, al
0009 16 78 00 inc al
0010 18 47 00 84 cmp al, 0x84
0011 1B 55 13 jnz UP
0012 1D 79 00 dec al
0013
0014 DOWN:
0015 1F 4E 00 02 out 2, al
0016 22 79 00 dec al
0017 24 47 00 19 cmp al, 0x19
0018 27 55 1F jnz DOWN
0019 29 57 10 jmp BEGIN
0020
0021
0022
0001 ;采用中断的方式,通过8250将外设字符传送到cpu内部寄存器bl
0002
0003 .int_table
0004 00 40 intr0
0005
0006 .text
0007 10 74 cli ; 关中断
0008
0009 ; 初始化栈顶地址
0010 11 01 04 00 mov sp, 0
0011
0012 ;初始化用于接收字符的8250芯片
0013 14 01 00 0F mov al, 0x0f
0014 17 4E 00 81 out 0x81, al ;允许中断
0015
0016 ;初始化中断控制器8259芯片
0017 1A 01 00 13 mov al, 0x13
0018 1D 4E 00 90 out 0x90, al ; 写ICW1,边沿触发,单片,需要设置ICW4
0019 20 01 00 00 mov al, 0
0020 23 4E 00 91 out 0x91, al ; 写ICW2,设定IRQ0的中断号为0
0021 26 4E 00 91 out 0x91, al ; 写入ICW4,设定普通全嵌套方式,普通EOI方式(通过发EOI命令结束中断)
0022 29 4E 00 91 out 0x91, al ; 写OCW1,允许全部8级中断请求
0023
0024 2C 75 sti ; 开中断
0025
0026 BEGIN:
0027 2D 01 00 1A mov al, 0x1a
0028
0029 UP:
0030 30 78 00 inc al
0031 32 47 00 84 cmp al, 0x84
0032 35 55 30 jnz UP
0033
0034 DOWN:
0035 37 79 00 dec al
0036 39 47 00 19 cmp al, 0x19
0037 3C 55 37 jnz DOWN
0038 3E 57 2D jmp BEGIN
0039
0040
0041 ;=============================================
0042 ;中断服务程序,当接收器满的时候,触发CPU从8250取数据
0043 intr0:
0044 40 4B 00 80 in al, 0x80 ;将端口0x80数据读入al寄存器
0045 43 02 01 mov bl, al ;再将al移动到bl中
0046 45 01 00 20 mov al, 0x20
0047 48 4E 00 90 out 0x90, al ;中断结束命令eoi
0048 4B 5D 44 iret
0049
没有这种文件类型的预览
没有这种文件类型的预览
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<svg height="4634" version="1.1" width="8150" xmlns="http://www.w3.org/2000/svg">
<svg height="5380" version="1.1" width="13501" xmlns="http://www.w3.org/2000/svg">
<text alignment-baseline="after-edge" fill="#800000" font-family="微软雅黑" font-size="200" font-weight="700" text-anchor="start" x="29" y="3856">DBUS[7..0]</text>
......@@ -283,7 +283,7 @@
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1169" x2="1269" y1="2956" y2="2956"/>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="30" font-weight="400" text-anchor="start" x="1110" y="2976">1</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="30" font-weight="400" text-anchor="start" x="1109" y="2977">0</text>
<rect fill="#ffffff" fill-opacity="0.5" height="60" stroke="#800000" stroke-width="5" width="100" x="1069" y="2926"/>
......@@ -455,6 +455,564 @@
<polyline fill="none" points="1569 2556, 1269 2556" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<rect fill="#80ff80" height="1400" stroke="#800000" stroke-width="1" width="700" x="12219" y="3956"/>
<text alignment-baseline="after-edge" fill="#000080" font-family="微软雅黑" font-size="105" font-weight="700" text-anchor="start" x="12219" y="3856">8259A</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12219" y="3906">8259A\8259A.dlsche</text>
<polygon fill="#ffff80" points="12219 4056, 12244 4031, 12294 4031, 12319 4056, 12294 4081, 12244 4081, 12219 4056" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="4056">CS</text>
<polygon fill="#ffff80" points="12219 4156, 12244 4131, 12294 4131, 12319 4156, 12294 4181, 12244 4181, 12219 4156" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="4156">WR</text>
<polygon fill="#ffff80" points="12219 4256, 12244 4231, 12294 4231, 12319 4256, 12294 4281, 12244 4281, 12219 4256" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="4256">RD</text>
<polygon fill="#ffff80" points="12219 4356, 12244 4331, 12294 4331, 12319 4356, 12294 4381, 12244 4381, 12219 4356" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="4356">D7</text>
<polygon fill="#ffff80" points="12219 4456, 12244 4431, 12294 4431, 12319 4456, 12294 4481, 12244 4481, 12219 4456" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="4456">D6</text>
<polygon fill="#ffff80" points="12219 4556, 12244 4531, 12294 4531, 12319 4556, 12294 4581, 12244 4581, 12219 4556" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="4556">D5</text>
<polygon fill="#ffff80" points="12219 4656, 12244 4631, 12294 4631, 12319 4656, 12294 4681, 12244 4681, 12219 4656" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="4656">D4</text>
<polygon fill="#ffff80" points="12219 4756, 12244 4731, 12294 4731, 12319 4756, 12294 4781, 12244 4781, 12219 4756" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="4756">D3</text>
<polygon fill="#ffff80" points="12219 4856, 12244 4831, 12294 4831, 12319 4856, 12294 4881, 12244 4881, 12219 4856" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="4856">D2</text>
<polygon fill="#ffff80" points="12219 4956, 12244 4931, 12294 4931, 12319 4956, 12294 4981, 12244 4981, 12219 4956" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="4956">D1</text>
<polygon fill="#ffff80" points="12219 5056, 12244 5031, 12294 5031, 12319 5056, 12294 5081, 12244 5081, 12219 5056" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="5056">D0</text>
<polygon fill="#ffff80" points="12219 5156, 12244 5131, 12294 5131, 12319 5156, 12294 5181, 12244 5181, 12219 5156" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="5156">CAS0</text>
<polygon fill="#ffff80" points="12219 5256, 12244 5231, 12294 5231, 12319 5256, 12294 5281, 12244 5281, 12219 5256" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="5256">CAS1</text>
<polygon fill="#ffff80" points="12919 4056, 12894 4031, 12844 4031, 12819 4056, 12844 4081, 12894 4081, 12919 4056" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="4056">A0</text>
<polygon fill="#ffff80" points="12919 4156, 12894 4131, 12844 4131, 12819 4156, 12844 4181, 12894 4181, 12919 4156" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="4156">INTA</text>
<polygon fill="#ffff80" points="12919 4256, 12894 4231, 12844 4231, 12819 4256, 12844 4281, 12894 4281, 12919 4256" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="4256">IR7</text>
<polygon fill="#ffff80" points="12919 4356, 12894 4331, 12844 4331, 12819 4356, 12844 4381, 12894 4381, 12919 4356" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="4356">IR6</text>
<polygon fill="#ffff80" points="12919 4456, 12894 4431, 12844 4431, 12819 4456, 12844 4481, 12894 4481, 12919 4456" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="4456">IR5</text>
<polygon fill="#ffff80" points="12919 4556, 12894 4531, 12844 4531, 12819 4556, 12844 4581, 12894 4581, 12919 4556" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="4556">IR4</text>
<polygon fill="#ffff80" points="12919 4656, 12894 4631, 12844 4631, 12819 4656, 12844 4681, 12894 4681, 12919 4656" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="4656">IR3</text>
<polygon fill="#ffff80" points="12919 4756, 12894 4731, 12844 4731, 12819 4756, 12844 4781, 12894 4781, 12919 4756" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="4756">IR2</text>
<polygon fill="#ffff80" points="12919 4856, 12894 4831, 12844 4831, 12819 4856, 12844 4881, 12894 4881, 12919 4856" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="4856">IR1</text>
<polygon fill="#ffff80" points="12919 4956, 12894 4931, 12844 4931, 12819 4956, 12844 4981, 12894 4981, 12919 4956" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="4956">IR0</text>
<polygon fill="#ffff80" points="12919 5056, 12894 5031, 12844 5031, 12819 5056, 12844 5081, 12894 5081, 12919 5056" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="5056">INT</text>
<polygon fill="#ffff80" points="12919 5156, 12894 5131, 12844 5131, 12819 5156, 12844 5181, 12894 5181, 12919 5156" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="5156">SP</text>
<polygon fill="#ffff80" points="12919 5256, 12894 5231, 12844 5231, 12819 5256, 12844 5281, 12894 5281, 12919 5256" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="5256">CAS2</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="10119" x2="10119" y1="1606" y2="1656"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="17" font-weight="700" text-anchor="end" x="10114" y="1646">0</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="10099" x2="10099" y1="1606" y2="1656"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="17" font-weight="700" text-anchor="end" x="10094" y="1646">1</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="10079" x2="10079" y1="1606" y2="1656"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="17" font-weight="700" text-anchor="end" x="10074" y="1646">2</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="10059" x2="10059" y1="1606" y2="1656"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="17" font-weight="700" text-anchor="end" x="10054" y="1646">3</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="10039" x2="10039" y1="1606" y2="1656"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="17" font-weight="700" text-anchor="end" x="10034" y="1646">4</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="10019" x2="10019" y1="1606" y2="1656"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="17" font-weight="700" text-anchor="end" x="10014" y="1646">5</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="9999" x2="9999" y1="1606" y2="1656"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="17" font-weight="700" text-anchor="end" x="9994" y="1646">6</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="9979" x2="9979" y1="1606" y2="1656"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="17" font-weight="700" text-anchor="end" x="9974" y="1646">7</text>
<rect fill="#000000" fill-opacity="0.5" height="50" stroke="#a0a0a4" stroke-width="1" width="160" x="9969" y="1556"/>
<text alignment-baseline="after-edge" fill="#ff0000" font-family="微软雅黑" font-size="30" font-weight="400" text-anchor="start" x="10029" y="1603">07</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="10147" y="1602">1</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="15" font-weight="700" text-anchor="start" x="9979" y="1545">INTER_DIGITAL8</text>
<polyline fill="none" points="10419 1756, 10119 1756, 10119 1656" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 1856, 10099 1856, 10099 1656" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 1956, 10079 1956, 10079 1656" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 2056, 10059 2056, 10059 1656" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 2156, 10039 2156, 10039 1656" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 2256, 10019 2256, 10019 1656" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 2356, 9999 2356, 9999 1656" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 2456, 9979 2456, 9979 1656" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 3156, 10219 3156" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="10079" x2="10019" y1="3156" y2="3156"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="10159" x2="10219" y1="3156" y2="3156"/>
<circle cx="10155" cy="3156" fill="none" r="5" stroke="#000000" stroke-width="5"/>
<polygon fill="#ffffff" fill-opacity="0.5" points="10079 3106, 10079 3206, 10149 3156, 10079 3106" stroke="#000000" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="10099" y="3120">U1</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="10079" y="3252">NOT</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10019" y="3156">RESET</text>
<rect fill="#80ff80" height="1700" stroke="#800000" stroke-width="1" width="700" x="10419" y="1656"/>
<text alignment-baseline="after-edge" fill="#000080" font-family="微软雅黑" font-size="105" font-weight="700" text-anchor="start" x="10419" y="1556">8250_T</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10419" y="1606">8250\8250.dlsche</text>
<polygon fill="#ffff80" points="10419 1756, 10444 1731, 10494 1731, 10519 1756, 10494 1781, 10444 1781, 10419 1756" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10529" y="1756">D0</text>
<polygon fill="#ffff80" points="10419 1856, 10444 1831, 10494 1831, 10519 1856, 10494 1881, 10444 1881, 10419 1856" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10529" y="1856">D1</text>
<polygon fill="#ffff80" points="10419 1956, 10444 1931, 10494 1931, 10519 1956, 10494 1981, 10444 1981, 10419 1956" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10529" y="1956">D2</text>
<polygon fill="#ffff80" points="10419 2056, 10444 2031, 10494 2031, 10519 2056, 10494 2081, 10444 2081, 10419 2056" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10529" y="2056">D3</text>
<polygon fill="#ffff80" points="10419 2156, 10444 2131, 10494 2131, 10519 2156, 10494 2181, 10444 2181, 10419 2156" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10529" y="2156">D4</text>
<polygon fill="#ffff80" points="10419 2256, 10444 2231, 10494 2231, 10519 2256, 10494 2281, 10444 2281, 10419 2256" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10529" y="2256">D5</text>
<polygon fill="#ffff80" points="10419 2356, 10444 2331, 10494 2331, 10519 2356, 10494 2381, 10444 2381, 10419 2356" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10529" y="2356">D6</text>
<polygon fill="#ffff80" points="10419 2456, 10444 2431, 10494 2431, 10519 2456, 10494 2481, 10444 2481, 10419 2456" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10529" y="2456">D7</text>
<polygon fill="#ffff80" points="10419 2556, 10444 2531, 10494 2531, 10519 2556, 10494 2581, 10444 2581, 10419 2556" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10529" y="2556">CS</text>
<polygon fill="#ffff80" points="10419 2656, 10444 2631, 10494 2631, 10519 2656, 10494 2681, 10444 2681, 10419 2656" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10529" y="2656">A0</text>
<polygon fill="#ffff80" points="10419 2756, 10444 2731, 10494 2731, 10519 2756, 10494 2781, 10444 2781, 10419 2756" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10529" y="2756">A1</text>
<polygon fill="#ffff80" points="10419 2856, 10444 2831, 10494 2831, 10519 2856, 10494 2881, 10444 2881, 10419 2856" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10529" y="2856">A2</text>
<polygon fill="#ffff80" points="10419 2956, 10444 2931, 10494 2931, 10519 2956, 10494 2981, 10444 2981, 10419 2956" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10529" y="2956">DISTR</text>
<polygon fill="#ffff80" points="10419 3056, 10444 3031, 10494 3031, 10519 3056, 10494 3081, 10444 3081, 10419 3056" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10529" y="3056">DOSTR</text>
<polygon fill="#ffff80" points="10419 3156, 10444 3131, 10494 3131, 10519 3156, 10494 3181, 10444 3181, 10419 3156" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10529" y="3156">MR</text>
<polygon fill="#ffff80" points="10419 3256, 10444 3231, 10494 3231, 10519 3256, 10494 3281, 10444 3281, 10419 3256" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10529" y="3256">RCLK</text>
<polygon fill="#ffff80" points="11119 1756, 11094 1731, 11044 1731, 11019 1756, 11044 1781, 11094 1781, 11119 1756" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10909" y="1756">SIN</text>
<polygon fill="#ffff80" points="11119 1856, 11094 1831, 11044 1831, 11019 1856, 11044 1881, 11094 1881, 11119 1856" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10909" y="1856">SOUT</text>
<polygon fill="#ffff80" points="11119 1956, 11094 1931, 11044 1931, 11019 1956, 11044 1981, 11094 1981, 11119 1956" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10909" y="1956">RTS</text>
<polygon fill="#ffff80" points="11119 2056, 11094 2031, 11044 2031, 11019 2056, 11044 2081, 11094 2081, 11119 2056" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10909" y="2056">CTS</text>
<polygon fill="#ffff80" points="11119 2256, 11094 2231, 11044 2231, 11019 2256, 11044 2281, 11094 2281, 11119 2256" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="10909" y="2256">INTRPT</text>
<rect fill="#80ff80" height="1700" stroke="#800000" stroke-width="1" width="700" x="12219" y="1656"/>
<text alignment-baseline="after-edge" fill="#000080" font-family="微软雅黑" font-size="105" font-weight="700" text-anchor="start" x="12219" y="1556">8250_R</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12219" y="1606">8250\8250.dlsche</text>
<polygon fill="#ffff80" points="12219 1756, 12244 1731, 12294 1731, 12319 1756, 12294 1781, 12244 1781, 12219 1756" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="1756">D0</text>
<polygon fill="#ffff80" points="12219 1856, 12244 1831, 12294 1831, 12319 1856, 12294 1881, 12244 1881, 12219 1856" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="1856">D1</text>
<polygon fill="#ffff80" points="12219 1956, 12244 1931, 12294 1931, 12319 1956, 12294 1981, 12244 1981, 12219 1956" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="1956">D2</text>
<polygon fill="#ffff80" points="12219 2056, 12244 2031, 12294 2031, 12319 2056, 12294 2081, 12244 2081, 12219 2056" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="2056">D3</text>
<polygon fill="#ffff80" points="12219 2156, 12244 2131, 12294 2131, 12319 2156, 12294 2181, 12244 2181, 12219 2156" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="2156">D4</text>
<polygon fill="#ffff80" points="12219 2256, 12244 2231, 12294 2231, 12319 2256, 12294 2281, 12244 2281, 12219 2256" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="2256">D5</text>
<polygon fill="#ffff80" points="12219 2356, 12244 2331, 12294 2331, 12319 2356, 12294 2381, 12244 2381, 12219 2356" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="2356">D6</text>
<polygon fill="#ffff80" points="12219 2456, 12244 2431, 12294 2431, 12319 2456, 12294 2481, 12244 2481, 12219 2456" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="2456">D7</text>
<polygon fill="#ffff80" points="12219 2556, 12244 2531, 12294 2531, 12319 2556, 12294 2581, 12244 2581, 12219 2556" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="2556">CS</text>
<polygon fill="#ffff80" points="12219 2656, 12244 2631, 12294 2631, 12319 2656, 12294 2681, 12244 2681, 12219 2656" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="2656">A0</text>
<polygon fill="#ffff80" points="12219 2756, 12244 2731, 12294 2731, 12319 2756, 12294 2781, 12244 2781, 12219 2756" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="2756">A1</text>
<polygon fill="#ffff80" points="12219 2856, 12244 2831, 12294 2831, 12319 2856, 12294 2881, 12244 2881, 12219 2856" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="2856">A2</text>
<polygon fill="#ffff80" points="12219 2956, 12244 2931, 12294 2931, 12319 2956, 12294 2981, 12244 2981, 12219 2956" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="2956">DISTR</text>
<polygon fill="#ffff80" points="12219 3056, 12244 3031, 12294 3031, 12319 3056, 12294 3081, 12244 3081, 12219 3056" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="3056">DOSTR</text>
<polygon fill="#ffff80" points="12219 3156, 12244 3131, 12294 3131, 12319 3156, 12294 3181, 12244 3181, 12219 3156" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="3156">MR</text>
<polygon fill="#ffff80" points="12219 3256, 12244 3231, 12294 3231, 12319 3256, 12294 3281, 12244 3281, 12219 3256" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12329" y="3256">RCLK</text>
<polygon fill="#ffff80" points="12919 1756, 12894 1731, 12844 1731, 12819 1756, 12844 1781, 12894 1781, 12919 1756" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="1756">SIN</text>
<polygon fill="#ffff80" points="12919 1856, 12894 1831, 12844 1831, 12819 1856, 12844 1881, 12894 1881, 12919 1856" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="1856">SOUT</text>
<polygon fill="#ffff80" points="12919 1956, 12894 1931, 12844 1931, 12819 1956, 12844 1981, 12894 1981, 12919 1956" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="1956">RTS</text>
<polygon fill="#ffff80" points="12919 2056, 12894 2031, 12844 2031, 12819 2056, 12844 2081, 12894 2081, 12919 2056" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="2056">CTS</text>
<polygon fill="#ffff80" points="12919 2256, 12894 2231, 12844 2231, 12819 2256, 12844 2281, 12894 2281, 12919 2256" stroke="#800000" stroke-width="1"/>
<text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12709" y="2256">INTRPT</text>
<polyline fill="none" points="10419 2956, 10119 2956" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="10119" x2="10119" y1="2906" y2="2956"/>
<polygon fill="#ffffff" fill-opacity="0.5" points="10119 2906, 10169 2856, 10069 2856, 10119 2906" stroke="#000000" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="30" font-weight="700" text-anchor="start" x="10109" y="2896">1</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="10109" y="2826">U2</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="10049" y="2856">DIGITAL1</text>
<polyline fill="none" points="10419 3056, 9919 3056" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="9819" x2="9919" y1="3356" y2="3356"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="9719" y="3306"/>
<polyline fill="none" points="9729 3256, 9809 3256" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9769 3256, 9769 3306" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9739 3386, 9769 3386, 9769 3326, 9799 3326" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="9759" y="3243">C3</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="9629" y="3366">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9719" y="3456">Key = A</text>
<polyline fill="none" points="9919 3356, 10319 3356, 10319 3256, 10419 3256" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="9819" x2="9919" y1="3056" y2="3056"/>
<text alignment-baseline="after-edge" fill="#000080" font-family="微软雅黑" font-size="30" font-weight="700" text-anchor="start" x="9760" y="3076">1</text>
<rect fill="#ffffff" fill-opacity="0.5" height="60" stroke="#800000" stroke-width="5" width="100" x="9719" y="3026"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="9763" y="3017">3</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="9680" y="3168">INTER_DIGITAL</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9720" y="3129">Key = W</text>
<polyline fill="none" points="12219 1756, 12019 1756" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 1856, 12019 1856" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 1956, 12019 1956" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 2056, 12019 2056" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 2156, 12019 2156" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 2256, 12019 2256" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 2356, 12019 2356" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 2456, 12019 2456" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="1756">DBUS0</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="1856">DBUS1</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="1956">DBUS2</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="2056">DBUS3</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="2156">DBUS4</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="2256">DBUS5</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="2356">DBUS6</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="2456">DBUS7</text>
<polyline fill="none" points="12219 2556, 12019 2556" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="2556">CS0</text>
<polyline fill="none" points="12219 2656, 12019 2656" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 2756, 12019 2756" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 2856, 12019 2856" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="2656">ABUS0</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="2756">ABUS1</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="2856">ABUS2</text>
<polyline fill="none" points="12219 2956, 12019 2956" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 3056, 12019 3056" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 3156, 12019 3156" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="2956">IOR</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="3056">IOW</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="11879" x2="11819" y1="3156" y2="3156"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="11959" x2="12019" y1="3156" y2="3156"/>
<circle cx="11955" cy="3156" fill="none" r="5" stroke="#000000" stroke-width="5"/>
<polygon fill="#ffffff" fill-opacity="0.5" points="11879 3106, 11879 3206, 11949 3156, 11879 3106" stroke="#000000" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="11899" y="3120">U6</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="11879" y="3252">NOT</text>
<polyline fill="none" points="11819 3156, 11719 3156" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="11719" y="3156">RESET</text>
<polyline fill="none" points="10319 3356, 10319 3456, 12119 3456, 12119 3256, 12219 3256" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9919" y="3356">RCLK</text>
<polyline fill="none" points="11119 1856, 11319 1856, 11319 1256, 13069 1256, 13069 1756, 12919 1756" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11119 2056, 11419 2056, 11419 1356, 13169 1356, 13169 1956, 12919 1956" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12919 2256, 13319 2256, 13319 4956, 12919 4956" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12919 4056, 13119 4056" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="13019" y="4056">ABUS0</text>
<polyline fill="none" points="12919 5156, 13419 5156" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="13419" x2="13419" y1="5106" y2="5156"/>
<polygon fill="#ffffff" fill-opacity="0.5" points="13419 5106, 13469 5056, 13369 5056, 13419 5106" stroke="#000000" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="30" font-weight="700" text-anchor="start" x="13409" y="5096">1</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="13409" y="5026">U7</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="13349" y="5056">DIGITAL1</text>
<polyline fill="none" points="12219 4056, 12019 4056" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 4156, 12019 4156" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 4256, 12019 4256" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 4356, 12019 4356" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 4456, 12019 4456" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 4556, 12019 4556" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 4656, 12019 4656" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 4756, 12019 4756" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 4856, 12019 4856" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 4956, 12019 4956" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12219 5056, 12019 5056" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12919 5056, 13119 5056" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="13019" y="5056">INTR</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="4056">CS2</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="4156">IOW</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="4256">IOR</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="4356">DBUS7</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="4456">DBUS6</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="4556">DBUS5</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="4656">DBUS4</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="4756">DBUS3</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="4856">DBUS2</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="4956">DBUS1</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12019" y="5056">DBUS0</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="11219" y="2056">CTS_OUT</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="13019" y="2256">INTR0</text>
<circle cx="7219" cy="1086" fill="#000080" r="25" stroke="#000080" stroke-width="5"/>
<circle cx="5319" cy="1086" fill="#000080" r="25" stroke="#000080" stroke-width="5"/>
......@@ -467,4 +1025,6 @@
<circle cx="1469" cy="2956" fill="#0000ff" r="8" stroke="#0000ff" stroke-width="5"/>
<circle cx="10319" cy="3356" fill="#0000ff" r="8" stroke="#0000ff" stroke-width="5"/>
</svg>
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论