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

Merge branch 'lab4' into 'master'

修改实验模板原理图 See merge request engintime/Dream-Logic/Project-Template/Microcomputer/Lab004!1
...@@ -2,3 +2,15 @@ ...@@ -2,3 +2,15 @@
path = 8086 path = 8086
url = https://www.codecode.net/engintime/Dream-Logic/Intel-classic-chips/8086.git url = https://www.codecode.net/engintime/Dream-Logic/Intel-classic-chips/8086.git
branch = master branch = master
[submodule "8259"]
path = 8259
url = https://lichuan@www.codecode.net/engintime/Dream-Logic/Intel-classic-chips/8259A.git
[submodule "8237"]
path = 8237
url = https://lichuan@www.codecode.net/engintime/Dream-Logic/Intel-classic-chips/8237.git
[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
8259A @ e0d8f978
Subproject commit e0d8f978c45a723a59b0410554b9631b49719659
...@@ -28,8 +28,22 @@ ...@@ -28,8 +28,22 @@
<file relativepath="IO\IO.dlsche"/> <file relativepath="IO\IO.dlsche"/>
<file relativepath="IO\README.md"/> <file relativepath="IO\README.md"/>
</filefolder> </filefolder>
<file relativepath="top.dlsche"/> <filefolder id="a961777e-cf0e-4210-9527-c3eac629a0d5" 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="README.md"/> <file relativepath="README.md"/>
<file relativepath="top.dlsche"/>
<file relativepath="top1.dlsche"/>
</files> </files>
</project> </project>
;test ; 0~15号存储单元存放中断向量,即中断向量表
.int_table
int0
int1
int2
int3
int4
int5
int6
int7
.text .text
BEGIN: cli ; 关中断
mov al, 0x1a
; 初始化栈顶地址
mov sp, 0
; 初始化主片8259A
mov al, 0x13
out 0x80, al ; 写ICW1,边沿触发,单片,需要设置ICW4
mov al, 0
out 0x81, al ; 写ICW2,设定IRQ0的中断号为0
out 0x81, al ; 写入ICW4,设定普通全嵌套方式,普通EOI方式(通过发EOI命令结束中断)
out 0x81, al ; 写OCW1,允许全部8级中断请求
sti ; 开中断
mov dl, 0
mov bl, 0
NEXT:
inc dl
cmp dl, 0xff
jnz NEXT
DEAD_LOOP:
jmp DEAD_LOOP
;================================================
; 主片的中断服务程序
int0:
mov bl, 0
mov cl, 1
shr cl, bl
mov al, 0x20
out 0x80, al ;中断结束命令eoi
iret
int1: ;1 interrupt
mov bl, 0
add bl, 1
mov al, 0x20
out 0x80, al ;中断结束命令eoi
iret
int2: ;2 interrupt
mov bl, 0
add bl, 2
mov al, 0x20
out 0x80, al ;中断结束命令eoi
iret
int3: ;3 interrupt
mov bl, 0
add bl, 3
mov al, 0x20
out 0x80, al ;中断结束命令eoi
iret
UP: int4: ;
out 2, al mov bl, 0
inc al add bl, 4
cmp al, 0x84 mov al, 0x20
jnz UP out 0x80, al ;中断结束命令eoi
dec al iret
DOWN: int5: ;
out 2, al mov bl, 0
dec al add bl, 5
cmp al, 0x19 mov al, 0x20
jnz DOWN out 0x80, al ;中断结束命令eoi
jmp BEGIN iret
int6: ;
mov bl, 0
add bl, 6
mov al, 0x20
out 0x80, al ;中断结束命令eoi
iret
int7: ;
mov bl, 0
add bl, 7
mov al, 0x20
out 0x80, al ;中断结束命令eoi
iret
没有这种文件类型的预览
0001 ;test 0001 ; 0~15号存储单元存放中断向量,即中断向量表
0002 .text 0002
0003 0003 .int_table
0004 BEGIN: 0004 00 36 int0
0005 10 01 00 1A mov al, 0x1a 0005 01 46 int1
0006 0006 02 54 int2
0007 UP: 0007 03 62 int3
0008 13 4E 00 02 out 2, al 0008 04 70 int4
0009 16 78 00 inc al 0009 05 7E int5
0010 18 47 00 84 cmp al, 0x84 0010 06 8C int6
0011 1B 55 13 jnz UP 0011 07 9A int7
0012 1D 79 00 dec al 0012
0013 0013 .text
0014 DOWN: 0014
0015 1F 4E 00 02 out 2, al 0015 10 74 cli ; 关中断
0016 22 79 00 dec al 0016
0017 24 47 00 19 cmp al, 0x19 0017 ; 初始化栈顶地址
0018 27 55 1F jnz DOWN 0018 11 01 04 00 mov sp, 0
0019 29 57 10 jmp BEGIN 0019
0020 0020 ; 初始化主片8259A
0021 0021 14 01 00 13 mov al, 0x13
0022 0022 17 4E 00 80 out 0x80, al ; 写ICW1,边沿触发,单片,需要设置ICW4
0023 1A 01 00 00 mov al, 0
0024 1D 4E 00 81 out 0x81, al ; 写ICW2,设定IRQ0的中断号为0
0025 20 4E 00 81 out 0x81, al ; 写入ICW4,设定普通全嵌套方式,普通EOI方式(通过发EOI命令结束中断)
0026 23 4E 00 81 out 0x81, al ; 写OCW1,允许全部8级中断请求
0027
0028 26 75 sti ; 开中断
0029
0030 27 01 03 00 mov dl, 0
0031 2A 01 01 00 mov bl, 0
0032
0033 NEXT:
0034 2D 78 03 inc dl
0035 2F 47 03 FF cmp dl, 0xff
0036 32 55 2D jnz NEXT
0037
0038 DEAD_LOOP:
0039 34 57 34 jmp DEAD_LOOP
0040
0041
0042 ;================================================
0043 ; 主片的中断服务程序
0044 int0:
0045 36 01 01 00 mov bl, 0
0046 39 01 02 01 mov cl, 1
0047 3C 65 12 shr cl, bl
0048 3E 01 00 20 mov al, 0x20
0049 41 4E 00 80 out 0x80, al ;中断结束命令eoi
0050 44 5D 44 iret
0051
0052 int1: ;1 interrupt
0053 46 01 01 00 mov bl, 0
0054 49 0E 01 01 add bl, 1
0055 4C 01 00 20 mov al, 0x20
0056 4F 4E 00 80 out 0x80, al ;中断结束命令eoi
0057 52 5D 44 iret
0058
0059 int2: ;2 interrupt
0060 54 01 01 00 mov bl, 0
0061 57 0E 01 02 add bl, 2
0062 5A 01 00 20 mov al, 0x20
0063 5D 4E 00 80 out 0x80, al ;中断结束命令eoi
0064 60 5D 44 iret
0065
0066
0067 int3: ;3 interrupt
0068 62 01 01 00 mov bl, 0
0069 65 0E 01 03 add bl, 3
0070 68 01 00 20 mov al, 0x20
0071 6B 4E 00 80 out 0x80, al ;中断结束命令eoi
0072 6E 5D 44 iret
0073
0074 int4: ;
0075 70 01 01 00 mov bl, 0
0076 73 0E 01 04 add bl, 4
0077 76 01 00 20 mov al, 0x20
0078 79 4E 00 80 out 0x80, al ;中断结束命令eoi
0079 7C 5D 44 iret
0080
0081 int5: ;
0082 7E 01 01 00 mov bl, 0
0083 81 0E 01 05 add bl, 5
0084 84 01 00 20 mov al, 0x20
0085 87 4E 00 80 out 0x80, al ;中断结束命令eoi
0086 8A 5D 44 iret
0087
0088 int6: ;
0089 8C 01 01 00 mov bl, 0
0090 8F 0E 01 06 add bl, 6
0091 92 01 00 20 mov al, 0x20
0092 95 4E 00 80 out 0x80, al ;中断结束命令eoi
0093 98 5D 44 iret
0094
0095 int7: ;
0096 9A 01 01 00 mov bl, 0
0097 9D 0E 01 07 add bl, 7
0098 A0 01 00 20 mov al, 0x20
0099 A3 4E 00 80 out 0x80, al ;中断结束命令eoi
0100 A6 5D 44 iret
0101
没有这种文件类型的预览
没有这种文件类型的预览
<?xml version="1.0" encoding="UTF-8" standalone="no" ?> <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<svg height="4681" version="1.1" width="8149" xmlns="http://www.w3.org/2000/svg"> <svg height="4685" version="1.1" width="12193" 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="28" y="3905">DBUS[7..0]</text> <text alignment-baseline="after-edge" fill="#800000" font-family="微软雅黑" font-size="200" font-weight="700" text-anchor="start" x="29" y="3907">DBUS[7..0]</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="微软雅黑" font-size="200" font-weight="700" text-anchor="start" x="58" y="1135">ABUS[7..0]</text> <text alignment-baseline="after-edge" fill="#800000" font-family="微软雅黑" font-size="200" font-weight="700" text-anchor="start" x="59" y="1137">ABUS[7..0]</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="微软雅黑" font-size="65" font-weight="700" text-anchor="start" x="1778" y="2605">CLK</text> <text alignment-baseline="after-edge" fill="#800000" font-family="微软雅黑" font-size="65" font-weight="700" text-anchor="start" x="1779" y="2607">CLK</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1168" x2="1268" y1="2605" y2="2605"/> <line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1169" x2="1269" y1="2607" y2="2607"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="1068" y="2555"/> <rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="1069" y="2557"/>
<polyline fill="none" points="1078 2505, 1158 2505" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="1079 2507, 1159 2507" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1118 2505, 1118 2555" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="1119 2507, 1119 2557" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1088 2635, 1118 2635, 1118 2575, 1148 2575" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> <polyline fill="none" points="1089 2637, 1119 2637, 1119 2577, 1149 2577" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="180" font-weight="700" text-anchor="start" x="688" y="2492">CLOCK</text> <text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="180" font-weight="700" text-anchor="start" x="689" y="2494">CLOCK</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="978" y="2615">SCLK</text> <text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="979" y="2617">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="微软雅黑" font-size="65" font-weight="700" text-anchor="start" x="978" y="2725">Key = C</text> <text alignment-baseline="after-edge" fill="#000080" font-family="微软雅黑" font-size="65" font-weight="700" text-anchor="start" x="979" y="2727">Key = C</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="微软雅黑" font-size="90" font-weight="700" text-anchor="start" x="1448" y="1825">RESET</text> <text alignment-baseline="after-edge" fill="#800000" font-family="微软雅黑" font-size="90" font-weight="700" text-anchor="start" x="1449" y="1827">RESET</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1348" x2="1448" y1="1825" y2="1825"/> <line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1349" x2="1449" y1="1827" y2="1827"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="1248" y="1775"/> <rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="1249" y="1777"/>
<polyline fill="none" points="1258 1725, 1338 1725" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="1259 1727, 1339 1727" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1298 1725, 1298 1775" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="1299 1727, 1299 1777" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1268 1855, 1298 1855, 1298 1795, 1328 1795" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> <polyline fill="none" points="1269 1857, 1299 1857, 1299 1797, 1329 1797" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="180" font-weight="700" text-anchor="start" x="1028" y="1702">RESET</text> <text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="180" font-weight="700" text-anchor="start" x="1029" y="1704">RESET</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1158" y="1835">SCLK</text> <text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1159" y="1837">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="微软雅黑" font-size="180" font-weight="700" text-anchor="start" x="998" y="2125">Key = R</text> <text alignment-baseline="after-edge" fill="#000080" font-family="微软雅黑" font-size="180" font-weight="700" text-anchor="start" x="999" y="2127">Key = R</text>
<polyline fill="none" points="4818 205, 4818 4635" stroke="#000000" stroke-dasharray="200,100" stroke-linecap="round" stroke-linejoin="round" stroke-width="50"/> <polyline fill="none" points="4819 207, 4819 4637" stroke="#000000" stroke-dasharray="200,100" stroke-linecap="round" stroke-linejoin="round" stroke-width="50"/>
<rect fill="#80ff80" height="1700" stroke="#800000" stroke-width="1" width="700" x="3218" y="1605"/> <rect fill="#80ff80" height="1700" stroke="#800000" stroke-width="1" width="700" x="3219" y="1607"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="250" font-weight="700" text-anchor="start" x="3218" y="1505">8086</text> <text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="250" font-weight="700" text-anchor="start" x="3219" y="1507">8086</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3218" y="1555">8086\8086.dlsche</text> <text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3219" y="1557">8086\8086.dlsche</text>
<polygon fill="#ffff80" points="3218 1705, 3243 1680, 3293 1680, 3318 1705, 3293 1730, 3243 1730, 3218 1705" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3219 1707, 3244 1682, 3294 1682, 3319 1707, 3294 1732, 3244 1732, 3219 1707" 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="3328" y="1705">CLK</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3329" y="1707">CLK</text>
<polygon fill="#ffff80" points="3218 1805, 3243 1780, 3293 1780, 3318 1805, 3293 1830, 3243 1830, 3218 1805" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3219 1807, 3244 1782, 3294 1782, 3319 1807, 3294 1832, 3244 1832, 3219 1807" 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="3328" y="1805">RESET</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3329" y="1807">RESET</text>
<polygon fill="#ffff80" points="3218 1905, 3243 1880, 3293 1880, 3318 1905, 3293 1930, 3243 1930, 3218 1905" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3219 1907, 3244 1882, 3294 1882, 3319 1907, 3294 1932, 3244 1932, 3219 1907" 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="3328" y="1905">INTR</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3329" y="1907">INTR</text>
<polygon fill="#ffff80" points="3218 2005, 3243 1980, 3293 1980, 3318 2005, 3293 2030, 3243 2030, 3218 2005" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3219 2007, 3244 1982, 3294 1982, 3319 2007, 3294 2032, 3244 2032, 3219 2007" 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="3328" y="2005">READY</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3329" y="2007">READY</text>
<polygon fill="#ffff80" points="3218 2105, 3243 2080, 3293 2080, 3318 2105, 3293 2130, 3243 2130, 3218 2105" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3219 2107, 3244 2082, 3294 2082, 3319 2107, 3294 2132, 3244 2132, 3219 2107" 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="3328" y="2105">HOLD</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3329" y="2107">HOLD</text>
<polygon fill="#ffff80" points="3218 2205, 3243 2180, 3293 2180, 3318 2205, 3293 2230, 3243 2230, 3218 2205" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3219 2207, 3244 2182, 3294 2182, 3319 2207, 3294 2232, 3244 2232, 3219 2207" 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="3328" y="2205">NMI</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3329" y="2207">NMI</text>
<polygon fill="#ffff80" points="3218 2305, 3243 2280, 3293 2280, 3318 2305, 3293 2330, 3243 2330, 3218 2305" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3219 2307, 3244 2282, 3294 2282, 3319 2307, 3294 2332, 3244 2332, 3219 2307" 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="3328" y="2305">TESET</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3329" y="2307">TESET</text>
<polygon fill="#ffff80" points="3218 2405, 3243 2380, 3293 2380, 3318 2405, 3293 2430, 3243 2430, 3218 2405" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3219 2407, 3244 2382, 3294 2382, 3319 2407, 3294 2432, 3244 2432, 3219 2407" 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="3328" y="2405">D0</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3329" y="2407">D0</text>
<polygon fill="#ffff80" points="3218 2505, 3243 2480, 3293 2480, 3318 2505, 3293 2530, 3243 2530, 3218 2505" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3219 2507, 3244 2482, 3294 2482, 3319 2507, 3294 2532, 3244 2532, 3219 2507" 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="3328" y="2505">D1</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3329" y="2507">D1</text>
<polygon fill="#ffff80" points="3218 2605, 3243 2580, 3293 2580, 3318 2605, 3293 2630, 3243 2630, 3218 2605" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3219 2607, 3244 2582, 3294 2582, 3319 2607, 3294 2632, 3244 2632, 3219 2607" 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="3328" y="2605">D2</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3329" y="2607">D2</text>
<polygon fill="#ffff80" points="3218 2705, 3243 2680, 3293 2680, 3318 2705, 3293 2730, 3243 2730, 3218 2705" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3219 2707, 3244 2682, 3294 2682, 3319 2707, 3294 2732, 3244 2732, 3219 2707" 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="3328" y="2705">D3</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3329" y="2707">D3</text>
<polygon fill="#ffff80" points="3218 2805, 3243 2780, 3293 2780, 3318 2805, 3293 2830, 3243 2830, 3218 2805" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3219 2807, 3244 2782, 3294 2782, 3319 2807, 3294 2832, 3244 2832, 3219 2807" 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="3328" y="2805">D4</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3329" y="2807">D4</text>
<polygon fill="#ffff80" points="3218 2905, 3243 2880, 3293 2880, 3318 2905, 3293 2930, 3243 2930, 3218 2905" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3219 2907, 3244 2882, 3294 2882, 3319 2907, 3294 2932, 3244 2932, 3219 2907" 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="3328" y="2905">D5</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3329" y="2907">D5</text>
<polygon fill="#ffff80" points="3218 3005, 3243 2980, 3293 2980, 3318 3005, 3293 3030, 3243 3030, 3218 3005" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3219 3007, 3244 2982, 3294 2982, 3319 3007, 3294 3032, 3244 3032, 3219 3007" 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="3328" y="3005">D6</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3329" y="3007">D6</text>
<polygon fill="#ffff80" points="3218 3105, 3243 3080, 3293 3080, 3318 3105, 3293 3130, 3243 3130, 3218 3105" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3219 3107, 3244 3082, 3294 3082, 3319 3107, 3294 3132, 3244 3132, 3219 3107" 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="3328" y="3105">D7</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3329" y="3107">D7</text>
<polygon fill="#ffff80" points="3918 1705, 3893 1680, 3843 1680, 3818 1705, 3843 1730, 3893 1730, 3918 1705" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3919 1707, 3894 1682, 3844 1682, 3819 1707, 3844 1732, 3894 1732, 3919 1707" 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="3708" y="1705">A0</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3709" y="1707">A0</text>
<polygon fill="#ffff80" points="3918 1805, 3893 1780, 3843 1780, 3818 1805, 3843 1830, 3893 1830, 3918 1805" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3919 1807, 3894 1782, 3844 1782, 3819 1807, 3844 1832, 3894 1832, 3919 1807" 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="3708" y="1805">A1</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3709" y="1807">A1</text>
<polygon fill="#ffff80" points="3918 1905, 3893 1880, 3843 1880, 3818 1905, 3843 1930, 3893 1930, 3918 1905" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3919 1907, 3894 1882, 3844 1882, 3819 1907, 3844 1932, 3894 1932, 3919 1907" 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="3708" y="1905">A2</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3709" y="1907">A2</text>
<polygon fill="#ffff80" points="3918 2005, 3893 1980, 3843 1980, 3818 2005, 3843 2030, 3893 2030, 3918 2005" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3919 2007, 3894 1982, 3844 1982, 3819 2007, 3844 2032, 3894 2032, 3919 2007" 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="3708" y="2005">A3</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3709" y="2007">A3</text>
<polygon fill="#ffff80" points="3918 2105, 3893 2080, 3843 2080, 3818 2105, 3843 2130, 3893 2130, 3918 2105" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3919 2107, 3894 2082, 3844 2082, 3819 2107, 3844 2132, 3894 2132, 3919 2107" 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="3708" y="2105">A4</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3709" y="2107">A4</text>
<polygon fill="#ffff80" points="3918 2205, 3893 2180, 3843 2180, 3818 2205, 3843 2230, 3893 2230, 3918 2205" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3919 2207, 3894 2182, 3844 2182, 3819 2207, 3844 2232, 3894 2232, 3919 2207" 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="3708" y="2205">A5</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3709" y="2207">A5</text>
<polygon fill="#ffff80" points="3918 2305, 3893 2280, 3843 2280, 3818 2305, 3843 2330, 3893 2330, 3918 2305" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3919 2307, 3894 2282, 3844 2282, 3819 2307, 3844 2332, 3894 2332, 3919 2307" 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="3708" y="2305">A6</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3709" y="2307">A6</text>
<polygon fill="#ffff80" points="3918 2405, 3893 2380, 3843 2380, 3818 2405, 3843 2430, 3893 2430, 3918 2405" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3919 2407, 3894 2382, 3844 2382, 3819 2407, 3844 2432, 3894 2432, 3919 2407" 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="3708" y="2405">A7</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3709" y="2407">A7</text>
<polygon fill="#ffff80" points="3918 2505, 3893 2480, 3843 2480, 3818 2505, 3843 2530, 3893 2530, 3918 2505" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3919 2507, 3894 2482, 3844 2482, 3819 2507, 3844 2532, 3894 2532, 3919 2507" 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="3688" y="2505">WR_OUT</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3689" y="2507">WR_OUT</text>
<polygon fill="#ffff80" points="3918 2605, 3893 2580, 3843 2580, 3818 2605, 3843 2630, 3893 2630, 3918 2605" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3919 2607, 3894 2582, 3844 2582, 3819 2607, 3844 2632, 3894 2632, 3919 2607" 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="3688" y="2605">READ_OUT</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3689" y="2607">READ_OUT</text>
<polygon fill="#ffff80" points="3918 2705, 3893 2680, 3843 2680, 3818 2705, 3843 2730, 3893 2730, 3918 2705" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3919 2707, 3894 2682, 3844 2682, 3819 2707, 3844 2732, 3894 2732, 3919 2707" 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="3708" y="2705">MIO</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3709" y="2707">MIO</text>
<polygon fill="#ffff80" points="3918 2805, 3893 2780, 3843 2780, 3818 2805, 3843 2830, 3893 2830, 3918 2805" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3919 2807, 3894 2782, 3844 2782, 3819 2807, 3844 2832, 3894 2832, 3919 2807" 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="3708" y="2805">INTA</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3709" y="2807">INTA</text>
<polygon fill="#ffff80" points="3918 2905, 3893 2880, 3843 2880, 3818 2905, 3843 2930, 3893 2930, 3918 2905" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3919 2907, 3894 2882, 3844 2882, 3819 2907, 3844 2932, 3894 2932, 3919 2907" 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="3708" y="2905">HLDA</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3709" y="2907">HLDA</text>
<polygon fill="#ffff80" points="3918 3005, 3893 2980, 3843 2980, 3818 3005, 3843 3030, 3893 3030, 3918 3005" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3919 3007, 3894 2982, 3844 2982, 3819 3007, 3844 3032, 3894 3032, 3919 3007" 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="3708" y="3005">ALE</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3709" y="3007">ALE</text>
<polygon fill="#ffff80" points="3918 3105, 3893 3080, 3843 3080, 3818 3105, 3843 3130, 3893 3130, 3918 3105" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3919 3107, 3894 3082, 3844 3082, 3819 3107, 3844 3132, 3894 3132, 3919 3107" 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="3708" y="3105">DEN</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3709" y="3107">DEN</text>
<polygon fill="#ffff80" points="3918 3205, 3893 3180, 3843 3180, 3818 3205, 3843 3230, 3893 3230, 3918 3205" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="3919 3207, 3894 3182, 3844 3182, 3819 3207, 3844 3232, 3894 3232, 3919 3207" 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="3708" y="3205">DTR</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3709" y="3207">DTR</text>
<polyline fill="none" points="3218 2405, 2868 2405" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="3219 2407, 2869 2407" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="3218 3105, 2868 3105" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="3219 3107, 2869 3107" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2818" x2="2868" y1="3155" y2="3105"/> <line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2819" x2="2869" y1="3157" y2="3107"/>
<polyline fill="none" points="2868 2505, 3218 2505" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="2869 2507, 3219 2507" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="2868 2605, 3218 2605" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="2869 2607, 3219 2607" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="2868 2705, 3218 2705" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="2869 2707, 3219 2707" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="2868 2805, 3218 2805" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="2869 2807, 3219 2807" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="2868 2905, 3218 2905" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="2869 2907, 3219 2907" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="2868 3005, 3218 3005" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="2869 3007, 3219 3007" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2818" x2="2868" y1="3055" y2="3005"/> <line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2819" x2="2869" y1="3057" y2="3007"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2818" x2="2868" y1="2955" y2="2905"/> <line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2819" x2="2869" y1="2957" y2="2907"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2818" x2="2868" y1="2855" y2="2805"/> <line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2819" x2="2869" y1="2857" y2="2807"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2818" x2="2868" y1="2755" y2="2705"/> <line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2819" x2="2869" y1="2757" y2="2707"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2818" x2="2868" y1="2655" y2="2605"/> <line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2819" x2="2869" y1="2657" y2="2607"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2818" x2="2868" y1="2555" y2="2505"/> <line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2819" x2="2869" y1="2557" y2="2507"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2818" x2="2868" y1="2455" y2="2405"/> <line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2819" x2="2869" y1="2457" y2="2407"/>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2868" y="2405">DBUS0</text> <text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2869" y="2407">DBUS0</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2868" y="2505">DBUS1</text> <text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2869" y="2507">DBUS1</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2868" y="2605">DBUS2</text> <text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2869" y="2607">DBUS2</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2868" y="2705">DBUS3</text> <text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2869" y="2707">DBUS3</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2868" y="2805">DBUS4</text> <text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2869" y="2807">DBUS4</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2868" y="2905">DBUS5</text> <text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2869" y="2907">DBUS5</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2868" y="3005">DBUS6</text> <text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2869" y="3007">DBUS6</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2868" y="3105">DBUS7</text> <text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2869" y="3107">DBUS7</text>
<polyline fill="none" points="3908 1705, 4158 1705" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="3909 1707, 4159 1707" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="3918 1805, 4168 1805" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="3919 1807, 4169 1807" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="3918 1905, 4168 1905" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="3919 1907, 4169 1907" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="3918 2005, 4168 2005" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="3919 2007, 4169 2007" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="3918 2105, 4168 2105" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="3919 2107, 4169 2107" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="3918 2205, 4168 2205" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="3919 2207, 4169 2207" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="3918 2305, 4168 2305" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="3919 2307, 4169 2307" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="3918 2405, 4168 2405" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="3919 2407, 4169 2407" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4158" x2="4208" y1="1705" y2="1655"/> <line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4159" x2="4209" y1="1707" y2="1657"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4168" x2="4218" y1="1805" y2="1755"/> <line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4169" x2="4219" y1="1807" y2="1757"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4168" x2="4218" y1="1905" y2="1855"/> <line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4169" x2="4219" y1="1907" y2="1857"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4168" x2="4218" y1="2005" y2="1955"/> <line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4169" x2="4219" y1="2007" y2="1957"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4168" x2="4218" y1="2105" y2="2055"/> <line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4169" x2="4219" y1="2107" y2="2057"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4168" x2="4218" y1="2205" y2="2155"/> <line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4169" x2="4219" y1="2207" y2="2157"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4168" x2="4218" y1="2305" y2="2255"/> <line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4169" x2="4219" y1="2307" y2="2257"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4168" x2="4218" y1="2405" y2="2355"/> <line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4169" x2="4219" y1="2407" y2="2357"/>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4008" y="1705">ABUS0</text> <text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4009" y="1707">ABUS0</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4018" y="1805">ABUS1</text> <text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4019" y="1807">ABUS1</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4018" y="1905">ABUS2</text> <text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4019" y="1907">ABUS2</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4018" y="2005">ABUS3</text> <text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4019" y="2007">ABUS3</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4018" y="2105">ABUS4</text> <text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4019" y="2107">ABUS4</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4018" y="2205">ABUS5</text> <text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4019" y="2207">ABUS5</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4018" y="2305">ABUS6</text> <text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4019" y="2307">ABUS6</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4018" y="2405">ABUS7</text> <text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4019" y="2407">ABUS7</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1168" x2="1268" y1="2805" y2="2805"/> <line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1169" x2="1269" y1="2807" y2="2807"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="1068" y="2755"/> <rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="1069" y="2757"/>
<polyline fill="none" points="1078 2815, 1088 2815, 1088 2785, 1108 2785, 1108 2815, 1128 2815, 1128 2785, 1148 2785, 1148 2815" stroke="#000080" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> <polyline fill="none" points="1079 2817, 1089 2817, 1089 2787, 1109 2787, 1109 2817, 1129 2817, 1129 2787, 1149 2787, 1149 2817" stroke="#000080" 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="1108" y="2745">C1</text> <text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1109" y="2747">C1</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1064" y="2901">CLOCK11</text> <text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1065" y="2903">CLOCK11</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="1208" y="2785">100Hz</text> <text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="1209" y="2787">100Hz</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1168" x2="1268" y1="3005" y2="3005"/> <line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1169" x2="1269" y1="3007" y2="3007"/>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="30" font-weight="400" text-anchor="start" x="1109" y="3025">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="3028">0</text>
<rect fill="#ffffff" fill-opacity="0.5" height="60" stroke="#800000" stroke-width="5" width="100" x="1068" y="2975"/> <rect fill="#ffffff" fill-opacity="0.5" height="60" stroke="#800000" stroke-width="5" width="100" x="1069" y="2977"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1112" y="2966">2</text> <text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1113" y="2968">2</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="999" y="3027">DCT</text> <text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1000" y="3029">DCT</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="1069" y="3078">Key = S</text> <text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="1070" y="3080">Key = S</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1628" x2="1568" y1="2605" y2="2605"/> <line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1629" x2="1569" y1="2607" y2="2607"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1708" x2="1768" y1="2605" y2="2605"/> <line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1709" x2="1769" y1="2607" y2="2607"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1668" x2="1668" y1="2645" y2="2705"/> <line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1669" x2="1669" y1="2647" y2="2707"/>
<circle cx="1668" cy="2637" fill="none" r="5" stroke="#000000" stroke-width="5"/> <circle cx="1669" cy="2639" fill="none" r="5" stroke="#000000" stroke-width="5"/>
<polygon fill="#ffffff" fill-opacity="0.5" points="1628 2555, 1628 2655, 1708 2605, 1628 2555" stroke="#000000" stroke-width="5"/> <polygon fill="#ffffff" fill-opacity="0.5" points="1629 2557, 1629 2657, 1709 2607, 1629 2557" 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="1678" y="2525">U3</text> <text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1679" y="2527">U3</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1628" y="2555">NBUFFER</text> <text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1629" y="2557">NBUFFER</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1628" x2="1568" y1="2805" y2="2805"/> <line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1629" x2="1569" y1="2807" y2="2807"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1708" x2="1768" y1="2805" y2="2805"/> <line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1709" x2="1769" y1="2807" y2="2807"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1668" x2="1668" y1="2845" y2="2905"/> <line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1669" x2="1669" y1="2847" y2="2907"/>
<circle cx="1668" cy="2837" fill="none" r="5" stroke="#000000" stroke-width="5"/> <circle cx="1669" cy="2839" fill="none" r="5" stroke="#000000" stroke-width="5"/>
<polygon fill="#ffffff" fill-opacity="0.5" points="1628 2755, 1628 2855, 1708 2805, 1628 2755" stroke="#000000" stroke-width="5"/> <polygon fill="#ffffff" fill-opacity="0.5" points="1629 2757, 1629 2857, 1709 2807, 1629 2757" 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="1678" y="2725">U4</text> <text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1679" y="2727">U4</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1628" y="2755">NBUFFER</text> <text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1629" y="2757">NBUFFER</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1528" x2="1468" y1="2705" y2="2705"/> <line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1529" x2="1469" y1="2707" y2="2707"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1608" x2="1668" y1="2705" y2="2705"/> <line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1609" x2="1669" y1="2707" y2="2707"/>
<circle cx="1604" cy="2705" fill="none" r="5" stroke="#000000" stroke-width="5"/> <circle cx="1605" cy="2707" fill="none" r="5" stroke="#000000" stroke-width="5"/>
<polygon fill="#ffffff" fill-opacity="0.5" points="1528 2655, 1528 2755, 1598 2705, 1528 2655" stroke="#000000" stroke-width="5"/> <polygon fill="#ffffff" fill-opacity="0.5" points="1529 2657, 1529 2757, 1599 2707, 1529 2657" 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="1548" y="2669">U5</text> <text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1549" y="2671">U5</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1528" y="2801">NOT</text> <text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1529" y="2803">NOT</text>
<rect fill="#80ff80" height="600" stroke="#800000" stroke-width="1" width="700" x="5518" y="2705"/> <rect fill="#80ff80" height="600" stroke="#800000" stroke-width="1" width="700" x="5519" y="2707"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="250" font-weight="700" text-anchor="start" x="5518" y="2605">MEM</text> <text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="250" font-weight="700" text-anchor="start" x="5519" y="2607">MEM</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="5518" y="2655">MEM\MEM.dlsche</text> <text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="5519" y="2657">MEM\MEM.dlsche</text>
<polygon fill="#ffff80" points="5518 2805, 5543 2780, 5593 2780, 5618 2805, 5593 2830, 5543 2830, 5518 2805" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="5519 2807, 5544 2782, 5594 2782, 5619 2807, 5594 2832, 5544 2832, 5519 2807" 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="5628" y="2805">WR_OUT</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="5629" y="2807">WR_OUT</text>
<polygon fill="#ffff80" points="5518 2905, 5543 2880, 5593 2880, 5618 2905, 5593 2930, 5543 2930, 5518 2905" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="5519 2907, 5544 2882, 5594 2882, 5619 2907, 5594 2932, 5544 2932, 5519 2907" 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="5628" y="2905">CLK</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="5629" y="2907">CLK</text>
<polygon fill="#ffff80" points="5518 3005, 5543 2980, 5593 2980, 5618 3005, 5593 3030, 5543 3030, 5518 3005" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="5519 3007, 5544 2982, 5594 2982, 5619 3007, 5594 3032, 5544 3032, 5519 3007" 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="5628" y="3005">MIO</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="5629" y="3007">MIO</text>
<polygon fill="#ffff80" points="5518 3105, 5543 3080, 5593 3080, 5618 3105, 5593 3130, 5543 3130, 5518 3105" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="5519 3107, 5544 3082, 5594 3082, 5619 3107, 5594 3132, 5544 3132, 5519 3107" 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="5628" y="3105">READ_OUT</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="5629" y="3107">READ_OUT</text>
<polygon fill="#ffff80" points="5518 3205, 5543 3180, 5593 3180, 5618 3205, 5593 3230, 5543 3230, 5518 3205" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="5519 3207, 5544 3182, 5594 3182, 5619 3207, 5594 3232, 5544 3232, 5519 3207" 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="5628" y="3205">ABUS[7..0]</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="5629" y="3207">ABUS[7..0]</text>
<polygon fill="#ffff80" points="6218 2805, 6193 2780, 6143 2780, 6118 2805, 6143 2830, 6193 2830, 6218 2805" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="6219 2807, 6194 2782, 6144 2782, 6119 2807, 6144 2832, 6194 2832, 6219 2807" 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="6008" y="2805">DBUS[7..0]</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="6009" y="2807">DBUS[7..0]</text>
<polyline fill="none" points="4218 2355, 4218 1135" stroke="#ff8057" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/> <polyline fill="none" points="4219 2357, 4219 1137" stroke="#ff8057" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/>
<polyline fill="none" points="5518 3205, 5318 3205, 5318 1135" stroke="#ff8057" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/> <polyline fill="none" points="5519 3207, 5319 3207, 5319 1137" stroke="#ff8057" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/>
<polyline fill="none" points="7418 2705, 7218 2705, 7218 1135" stroke="#ff8057" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/> <polyline fill="none" points="7419 2707, 7219 2707, 7219 1137" stroke="#ff8057" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/>
<polyline fill="none" points="2818 2455, 2818 3905" stroke="#000080" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/> <polyline fill="none" points="2819 2457, 2819 3907" stroke="#000080" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/>
<polyline fill="none" points="6218 2805, 6418 2805, 6418 3905" stroke="#000080" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/> <polyline fill="none" points="6219 2807, 6419 2807, 6419 3907" stroke="#000080" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/>
<rect fill="#80ff80" height="1100" stroke="#800000" stroke-width="1" width="700" x="7418" y="2205"/> <rect fill="#80ff80" height="1100" stroke="#800000" stroke-width="1" width="700" x="7419" y="2207"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="250" font-weight="700" text-anchor="start" x="7418" y="2105">IO</text> <text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="250" font-weight="700" text-anchor="start" x="7419" y="2107">IO</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7418" y="2155">IO\IO.dlsche</text> <text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7419" y="2157">IO\IO.dlsche</text>
<polygon fill="#ffff80" points="7418 2305, 7443 2280, 7493 2280, 7518 2305, 7493 2330, 7443 2330, 7418 2305" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="7419 2307, 7444 2282, 7494 2282, 7519 2307, 7494 2332, 7444 2332, 7419 2307" 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="7528" y="2305">MIO</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7529" y="2307">MIO</text>
<polygon fill="#ffff80" points="7418 2405, 7443 2380, 7493 2380, 7518 2405, 7493 2430, 7443 2430, 7418 2405" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="7419 2407, 7444 2382, 7494 2382, 7519 2407, 7494 2432, 7444 2432, 7419 2407" 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="7528" y="2405">WR_OUT</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7529" y="2407">WR_OUT</text>
<polygon fill="#ffff80" points="7418 2505, 7443 2480, 7493 2480, 7518 2505, 7493 2530, 7443 2530, 7418 2505" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="7419 2507, 7444 2482, 7494 2482, 7519 2507, 7494 2532, 7444 2532, 7419 2507" 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="7528" y="2505">READ_OUT</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7529" y="2507">READ_OUT</text>
<polygon fill="#ffff80" points="7418 2605, 7443 2580, 7493 2580, 7518 2605, 7493 2630, 7443 2630, 7418 2605" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="7419 2607, 7444 2582, 7494 2582, 7519 2607, 7494 2632, 7444 2632, 7419 2607" 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="7528" y="2605">MIO</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7529" y="2607">MIO</text>
<polygon fill="#ffff80" points="7418 2705, 7443 2680, 7493 2680, 7518 2705, 7493 2730, 7443 2730, 7418 2705" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="7419 2707, 7444 2682, 7494 2682, 7519 2707, 7494 2732, 7444 2732, 7419 2707" 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="7528" y="2705">A[7..0]</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7529" y="2707">A[7..0]</text>
<polygon fill="#ffff80" points="8118 2305, 8093 2280, 8043 2280, 8018 2305, 8043 2330, 8093 2330, 8118 2305" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="8119 2307, 8094 2282, 8044 2282, 8019 2307, 8044 2332, 8094 2332, 8119 2307" 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="7908" y="2305">IOW</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7909" y="2307">IOW</text>
<polygon fill="#ffff80" points="8118 2405, 8093 2380, 8043 2380, 8018 2405, 8043 2430, 8093 2430, 8118 2405" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="8119 2407, 8094 2382, 8044 2382, 8019 2407, 8044 2432, 8094 2432, 8119 2407" 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="7908" y="2405">IOR</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7909" y="2407">IOR</text>
<polygon fill="#ffff80" points="8118 2505, 8093 2480, 8043 2480, 8018 2505, 8043 2530, 8093 2530, 8118 2505" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="8119 2507, 8094 2482, 8044 2482, 8019 2507, 8044 2532, 8094 2532, 8119 2507" 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="7908" y="2505">CS0</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7909" y="2507">CS0</text>
<polygon fill="#ffff80" points="8118 2605, 8093 2580, 8043 2580, 8018 2605, 8043 2630, 8093 2630, 8118 2605" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="8119 2607, 8094 2582, 8044 2582, 8019 2607, 8044 2632, 8094 2632, 8119 2607" 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="7908" y="2605">CS1</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7909" y="2607">CS1</text>
<polygon fill="#ffff80" points="8118 2705, 8093 2680, 8043 2680, 8018 2705, 8043 2730, 8093 2730, 8118 2705" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="8119 2707, 8094 2682, 8044 2682, 8019 2707, 8044 2732, 8094 2732, 8119 2707" 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="7908" y="2705">CS2</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7909" y="2707">CS2</text>
<polygon fill="#ffff80" points="8118 2805, 8093 2780, 8043 2780, 8018 2805, 8043 2830, 8093 2830, 8118 2805" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="8119 2807, 8094 2782, 8044 2782, 8019 2807, 8044 2832, 8094 2832, 8119 2807" 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="7908" y="2805">CS3</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7909" y="2807">CS3</text>
<polygon fill="#ffff80" points="8118 2905, 8093 2880, 8043 2880, 8018 2905, 8043 2930, 8093 2930, 8118 2905" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="8119 2907, 8094 2882, 8044 2882, 8019 2907, 8044 2932, 8094 2932, 8119 2907" 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="7908" y="2905">CS4</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7909" y="2907">CS4</text>
<polygon fill="#ffff80" points="8118 3005, 8093 2980, 8043 2980, 8018 3005, 8043 3030, 8093 3030, 8118 3005" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="8119 3007, 8094 2982, 8044 2982, 8019 3007, 8044 3032, 8094 3032, 8119 3007" 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="7908" y="3005">CS5</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7909" y="3007">CS5</text>
<polygon fill="#ffff80" points="8118 3105, 8093 3080, 8043 3080, 8018 3105, 8043 3130, 8093 3130, 8118 3105" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="8119 3107, 8094 3082, 8044 3082, 8019 3107, 8044 3132, 8094 3132, 8119 3107" 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="7908" y="3105">CS6</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7909" y="3107">CS6</text>
<polygon fill="#ffff80" points="8118 3205, 8093 3180, 8043 3180, 8018 3205, 8043 3230, 8093 3230, 8118 3205" stroke="#800000" stroke-width="1"/> <polygon fill="#ffff80" points="8119 3207, 8094 3182, 8044 3182, 8019 3207, 8044 3232, 8094 3232, 8119 3207" 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="7908" y="3205">CS7</text> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7909" y="3207">CS7</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="250" font-weight="700" text-anchor="start" x="98" y="315">实验四:可编程中断控制器8259</text> <text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="250" font-weight="700" text-anchor="start" x="99" y="317">实验四:可编程中断控制器8259单片实验</text>
<polyline fill="none" points="58 1135, 8118 1135" stroke="#ff8057" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/> <polyline fill="none" points="59 1137, 8119 1137" stroke="#ff8057" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/>
<polyline fill="none" points="28 3905, 8118 3905" stroke="#000080" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/> <polyline fill="none" points="29 3907, 8119 3907, 9469 3907, 9469 2457" stroke="#000080" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/>
<polyline fill="none" points="1768 2605, 1868 2605, 1868 2805, 1768 2805" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="1769 2607, 1869 2607, 1869 2807, 1769 2807" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1568 2805, 1268 2805" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="1569 2807, 1269 2807" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1268 3005, 1668 3005, 1668 2905" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="1269 3007, 1669 3007, 1669 2907" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1468 2705, 1468 3005" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="1469 2707, 1469 3007" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1568 2605, 1268 2605" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/> <polyline fill="none" points="1569 2607, 1269 2607" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="65" font-weight="700" text-anchor="start" x="108" y="405">[C]北京英真时代科技有限公司保留所有权利。</text> <rect fill="#80ff80" height="1400" stroke="#800000" stroke-width="1" width="700" x="9719" y="2007"/>
<circle cx="7218" cy="1135" fill="#000080" r="25" stroke="#000080" stroke-width="5"/> <text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9719" y="1907">8259A</text>
<circle cx="5318" cy="1135" fill="#000080" r="25" stroke="#000080" stroke-width="5"/> <text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9719" y="1957">8259A\8259A.dlsche</text>
<circle cx="4218" cy="1135" fill="#000080" r="25" stroke="#000080" stroke-width="5"/> <polygon fill="#ffff80" points="9719 2107, 9744 2082, 9794 2082, 9819 2107, 9794 2132, 9744 2132, 9719 2107" stroke="#800000" stroke-width="1"/>
<circle cx="6418" cy="3905" fill="#000080" r="25" stroke="#000080" stroke-width="5"/> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9829" y="2107">CS</text>
<circle cx="2818" cy="3905" fill="#000080" r="25" stroke="#000080" stroke-width="5"/> <polygon fill="#ffff80" points="9719 2207, 9744 2182, 9794 2182, 9819 2207, 9794 2232, 9744 2232, 9719 2207" stroke="#800000" stroke-width="1"/>
<circle cx="1468" cy="3005" fill="#0000ff" r="8" stroke="#0000ff" stroke-width="5"/> <text alignment-baseline="central" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9829" y="2207">WR</text>
<polygon fill="#ffff80" points="9719 2307, 9744 2282, 9794 2282, 9819 2307, 9794 2332, 9744 2332, 9719 2307" 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="9829" y="2307">RD</text>
<polygon fill="#ffff80" points="9719 2407, 9744 2382, 9794 2382, 9819 2407, 9794 2432, 9744 2432, 9719 2407" 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="9829" y="2407">D7</text>
<polygon fill="#ffff80" points="9719 2507, 9744 2482, 9794 2482, 9819 2507, 9794 2532, 9744 2532, 9719 2507" 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="9829" y="2507">D6</text>
<polygon fill="#ffff80" points="9719 2607, 9744 2582, 9794 2582, 9819 2607, 9794 2632, 9744 2632, 9719 2607" 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="9829" y="2607">D5</text>
<polygon fill="#ffff80" points="9719 2707, 9744 2682, 9794 2682, 9819 2707, 9794 2732, 9744 2732, 9719 2707" 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="9829" y="2707">D4</text>
<polygon fill="#ffff80" points="9719 2807, 9744 2782, 9794 2782, 9819 2807, 9794 2832, 9744 2832, 9719 2807" 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="9829" y="2807">D3</text>
<polygon fill="#ffff80" points="9719 2907, 9744 2882, 9794 2882, 9819 2907, 9794 2932, 9744 2932, 9719 2907" 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="9829" y="2907">D2</text>
<polygon fill="#ffff80" points="9719 3007, 9744 2982, 9794 2982, 9819 3007, 9794 3032, 9744 3032, 9719 3007" 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="9829" y="3007">D1</text>
<polygon fill="#ffff80" points="9719 3107, 9744 3082, 9794 3082, 9819 3107, 9794 3132, 9744 3132, 9719 3107" 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="9829" y="3107">D0</text>
<polygon fill="#ffff80" points="9719 3207, 9744 3182, 9794 3182, 9819 3207, 9794 3232, 9744 3232, 9719 3207" 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="9829" y="3207">CAS0</text>
<polygon fill="#ffff80" points="9719 3307, 9744 3282, 9794 3282, 9819 3307, 9794 3332, 9744 3332, 9719 3307" 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="9829" y="3307">CAS1</text>
<polygon fill="#ffff80" points="10419 2107, 10394 2082, 10344 2082, 10319 2107, 10344 2132, 10394 2132, 10419 2107" 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="10209" y="2107">A0</text>
<polygon fill="#ffff80" points="10419 2207, 10394 2182, 10344 2182, 10319 2207, 10344 2232, 10394 2232, 10419 2207" 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="10209" y="2207">INTA</text>
<polygon fill="#ffff80" points="10419 2307, 10394 2282, 10344 2282, 10319 2307, 10344 2332, 10394 2332, 10419 2307" 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="10209" y="2307">IR7</text>
<polygon fill="#ffff80" points="10419 2407, 10394 2382, 10344 2382, 10319 2407, 10344 2432, 10394 2432, 10419 2407" 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="10209" y="2407">IR6</text>
<polygon fill="#ffff80" points="10419 2507, 10394 2482, 10344 2482, 10319 2507, 10344 2532, 10394 2532, 10419 2507" 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="10209" y="2507">IR5</text>
<polygon fill="#ffff80" points="10419 2607, 10394 2582, 10344 2582, 10319 2607, 10344 2632, 10394 2632, 10419 2607" 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="10209" y="2607">IR4</text>
<polygon fill="#ffff80" points="10419 2707, 10394 2682, 10344 2682, 10319 2707, 10344 2732, 10394 2732, 10419 2707" 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="10209" y="2707">IR3</text>
<polygon fill="#ffff80" points="10419 2807, 10394 2782, 10344 2782, 10319 2807, 10344 2832, 10394 2832, 10419 2807" 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="10209" y="2807">IR2</text>
<polygon fill="#ffff80" points="10419 2907, 10394 2882, 10344 2882, 10319 2907, 10344 2932, 10394 2932, 10419 2907" 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="10209" y="2907">IR1</text>
<polygon fill="#ffff80" points="10419 3007, 10394 2982, 10344 2982, 10319 3007, 10344 3032, 10394 3032, 10419 3007" 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="10209" y="3007">IR0</text>
<polygon fill="#ffff80" points="10419 3107, 10394 3082, 10344 3082, 10319 3107, 10344 3132, 10394 3132, 10419 3107" 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="10209" y="3107">INT</text>
<polygon fill="#ffff80" points="10419 3207, 10394 3182, 10344 3182, 10319 3207, 10344 3232, 10394 3232, 10419 3207" 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="10209" y="3207">SP</text>
<polygon fill="#ffff80" points="10419 3307, 10394 3282, 10344 3282, 10319 3307, 10344 3332, 10394 3332, 10419 3307" 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="10209" y="3307">CAS2</text>
<polyline fill="none" points="9719 2407, 9519 2407" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 2507, 9519 2507" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 2607, 9519 2607" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 2707, 9519 2707" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 2807, 9519 2807" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 2907, 9519 2907" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 3007, 9519 3007" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 3107, 9519 3107" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="9469" x2="9519" y1="2457" y2="2407"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="9469" x2="9519" y1="2557" y2="2507"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="9469" x2="9519" y1="2657" y2="2607"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="9469" x2="9519" y1="2757" y2="2707"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="9469" x2="9519" y1="2857" y2="2807"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="9469" x2="9519" y1="2957" y2="2907"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="9469" x2="9519" y1="3057" y2="3007"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="9469" x2="9519" y1="3157" y2="3107"/>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="2407">DBUS7</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="2507">DBUS6</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="2607">DBUS5</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="2707">DBUS4</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="2807">DBUS3</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="2907">DBUS2</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="3007">DBUS1</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="3107">DBUS0</text>
<polyline fill="none" points="9719 2107, 8519 2107, 8519 2507, 8119 2507" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 2207, 8469 2207, 8469 2307, 8119 2307" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 2307, 8569 2307, 8569 2407, 8119 2407" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 2107, 10619 2107" 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="10459" y="2107">ABUS0</text>
<polyline fill="none" points="10419 3207, 10619 3207" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="10669" x2="10619" y1="3207" y2="3207"/>
<polygon fill="#ffffff" fill-opacity="0.5" points="10669 3207, 10719 3257, 10719 3157, 10669 3207" stroke="#000000" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="30" font-weight="700" text-anchor="start" transform="rotate(90 10679 3197)" x="10679" y="3197">1</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" transform="rotate(90 10749 3197)" x="10749" y="3197">U1</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" transform="rotate(90 10719 3137)" x="10719" y="3137">DIGITAL1</text>
<polyline fill="none" points="3919 2807, 4619 2807, 4619 1007, 10719 1007, 10719 2207, 10419 2207" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 3107, 10819 3107, 10819 907, 3119 907, 3119 1907, 3219 1907" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#000080" font-family="宋体" font-size="25" font-weight="400" text-anchor="start" x="10519" y="3107">高电平,中断请求</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="宋体" font-size="25" font-weight="400" text-anchor="start" x="10429" y="2207">低电平,中断应答</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="宋体" font-size="25" font-weight="400" text-anchor="start" x="10819" y="3227">SP=1,主片</text>
<polyline fill="none" points="10419 2307, 11019 2307, 11219 2307, 11219 2207" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 2407, 11019 2407, 11519 2407, 11519 2307" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 2507, 11019 2507, 11819 2507, 11819 2407" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 2607, 11019 2607, 12119 2607, 12119 2507" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 2707, 11019 2707, 12169 2707, 12169 2857" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 2807, 11019 2807, 11869 2807, 11869 2957" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 2907, 11019 2907, 11569 2907, 11569 3057" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 3007, 11019 3007, 11269 3007, 11269 3157" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="11119" x2="11219" y1="2207" y2="2207"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="11019" y="2157"/>
<polyline fill="none" points="11029 2107, 11109 2107" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11069 2107, 11069 2157" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11039 2237, 11069 2237, 11069 2177, 11099 2177" 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="11059" y="2094">C2</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="10929" y="2217">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="11019" y="2307">Key = 7</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="11419" x2="11519" y1="2307" y2="2307"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="11319" y="2257"/>
<polyline fill="none" points="11329 2207, 11409 2207" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11369 2207, 11369 2257" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11339 2337, 11369 2337, 11369 2277, 11399 2277" 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="11359" y="2194">C3</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="11229" y="2317">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="11319" y="2407">Key = 6</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="11719" x2="11819" y1="2407" y2="2407"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="11619" y="2357"/>
<polyline fill="none" points="11629 2307, 11709 2307" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11669 2307, 11669 2357" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11639 2437, 11669 2437, 11669 2377, 11699 2377" 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="11659" y="2294">C4</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="11529" y="2417">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="11619" y="2507">Key = 5</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="12019" x2="12119" y1="2507" y2="2507"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="11919" y="2457"/>
<polyline fill="none" points="11929 2407, 12009 2407" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11969 2407, 11969 2457" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11939 2537, 11969 2537, 11969 2477, 11999 2477" 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="11959" y="2394">C5</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="11829" y="2517">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="11919" y="2607">Key = 4</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="11169" x2="11269" y1="3157" y2="3157"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="11069" y="3107"/>
<polyline fill="none" points="11079 3057, 11159 3057" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11119 3057, 11119 3107" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11089 3187, 11119 3187, 11119 3127, 11149 3127" 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="11109" y="3044">C6</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="10979" y="3167">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="11069" y="3257">Key = 0</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="11469" x2="11569" y1="3057" y2="3057"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="11369" y="3007"/>
<polyline fill="none" points="11379 2957, 11459 2957" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11419 2957, 11419 3007" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11389 3087, 11419 3087, 11419 3027, 11449 3027" 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="11409" y="2944">C7</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="11279" y="3067">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="11369" y="3157">Key = 1</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="11769" x2="11869" y1="2957" y2="2957"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="11669" y="2907"/>
<polyline fill="none" points="11679 2857, 11759 2857" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11719 2857, 11719 2907" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11689 2987, 11719 2987, 11719 2927, 11749 2927" 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="11709" y="2844">C8</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="11579" y="2967">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="11669" y="3057">Key = 2</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="12069" x2="12169" y1="2857" y2="2857"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="11969" y="2807"/>
<polyline fill="none" points="11979 2757, 12059 2757" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12019 2757, 12019 2807" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11989 2887, 12019 2887, 12019 2827, 12049 2827" 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="12009" y="2744">C9</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="11879" y="2867">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="11969" y="2957">Key = 3</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="宋体" font-size="25" font-weight="400" text-anchor="start" x="10919" y="2697">上升沿触发中断请求</text>
<circle cx="7219" cy="1137" fill="#000080" r="25" stroke="#000080" stroke-width="5"/>
<circle cx="5319" cy="1137" fill="#000080" r="25" stroke="#000080" stroke-width="5"/>
<circle cx="4219" cy="1137" fill="#000080" r="25" stroke="#000080" stroke-width="5"/>
<circle cx="6419" cy="3907" fill="#000080" r="25" stroke="#000080" stroke-width="5"/>
<circle cx="2819" cy="3907" fill="#000080" r="25" stroke="#000080" stroke-width="5"/>
<circle cx="1469" cy="3007" fill="#0000ff" r="8" stroke="#0000ff" stroke-width="5"/>
</svg> </svg>
添加文件
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<svg height="4685" version="1.1" width="15344" 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="3907">DBUS[7..0]</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="微软雅黑" font-size="200" font-weight="700" text-anchor="start" x="59" y="1137">ABUS[7..0]</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="微软雅黑" font-size="65" font-weight="700" text-anchor="start" x="1779" y="2607">CLK</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1169" x2="1269" y1="2607" y2="2607"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="1069" y="2557"/>
<polyline fill="none" points="1079 2507, 1159 2507" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1119 2507, 1119 2557" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1089 2637, 1119 2637, 1119 2577, 1149 2577" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="180" font-weight="700" text-anchor="start" x="689" y="2494">CLOCK</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="979" y="2617">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="微软雅黑" font-size="65" font-weight="700" text-anchor="start" x="979" y="2727">Key = C</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="微软雅黑" font-size="90" font-weight="700" text-anchor="start" x="1449" y="1827">RESET</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1349" x2="1449" y1="1827" y2="1827"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="1249" y="1777"/>
<polyline fill="none" points="1259 1727, 1339 1727" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1299 1727, 1299 1777" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1269 1857, 1299 1857, 1299 1797, 1329 1797" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="180" font-weight="700" text-anchor="start" x="1029" y="1704">RESET</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1159" y="1837">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="微软雅黑" font-size="180" font-weight="700" text-anchor="start" x="999" y="2127">Key = R</text>
<polyline fill="none" points="4819 207, 4819 4637" stroke="#000000" stroke-dasharray="200,100" stroke-linecap="round" stroke-linejoin="round" stroke-width="50"/>
<rect fill="#80ff80" height="1700" stroke="#800000" stroke-width="1" width="700" x="3219" y="1607"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="250" font-weight="700" text-anchor="start" x="3219" y="1507">8086</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="3219" y="1557">8086\8086.dlsche</text>
<polygon fill="#ffff80" points="3219 1707, 3244 1682, 3294 1682, 3319 1707, 3294 1732, 3244 1732, 3219 1707" 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="3329" y="1707">CLK</text>
<polygon fill="#ffff80" points="3219 1807, 3244 1782, 3294 1782, 3319 1807, 3294 1832, 3244 1832, 3219 1807" 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="3329" y="1807">RESET</text>
<polygon fill="#ffff80" points="3219 1907, 3244 1882, 3294 1882, 3319 1907, 3294 1932, 3244 1932, 3219 1907" 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="3329" y="1907">INTR</text>
<polygon fill="#ffff80" points="3219 2007, 3244 1982, 3294 1982, 3319 2007, 3294 2032, 3244 2032, 3219 2007" 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="3329" y="2007">READY</text>
<polygon fill="#ffff80" points="3219 2107, 3244 2082, 3294 2082, 3319 2107, 3294 2132, 3244 2132, 3219 2107" 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="3329" y="2107">HOLD</text>
<polygon fill="#ffff80" points="3219 2207, 3244 2182, 3294 2182, 3319 2207, 3294 2232, 3244 2232, 3219 2207" 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="3329" y="2207">NMI</text>
<polygon fill="#ffff80" points="3219 2307, 3244 2282, 3294 2282, 3319 2307, 3294 2332, 3244 2332, 3219 2307" 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="3329" y="2307">TESET</text>
<polygon fill="#ffff80" points="3219 2407, 3244 2382, 3294 2382, 3319 2407, 3294 2432, 3244 2432, 3219 2407" 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="3329" y="2407">D0</text>
<polygon fill="#ffff80" points="3219 2507, 3244 2482, 3294 2482, 3319 2507, 3294 2532, 3244 2532, 3219 2507" 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="3329" y="2507">D1</text>
<polygon fill="#ffff80" points="3219 2607, 3244 2582, 3294 2582, 3319 2607, 3294 2632, 3244 2632, 3219 2607" 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="3329" y="2607">D2</text>
<polygon fill="#ffff80" points="3219 2707, 3244 2682, 3294 2682, 3319 2707, 3294 2732, 3244 2732, 3219 2707" 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="3329" y="2707">D3</text>
<polygon fill="#ffff80" points="3219 2807, 3244 2782, 3294 2782, 3319 2807, 3294 2832, 3244 2832, 3219 2807" 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="3329" y="2807">D4</text>
<polygon fill="#ffff80" points="3219 2907, 3244 2882, 3294 2882, 3319 2907, 3294 2932, 3244 2932, 3219 2907" 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="3329" y="2907">D5</text>
<polygon fill="#ffff80" points="3219 3007, 3244 2982, 3294 2982, 3319 3007, 3294 3032, 3244 3032, 3219 3007" 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="3329" y="3007">D6</text>
<polygon fill="#ffff80" points="3219 3107, 3244 3082, 3294 3082, 3319 3107, 3294 3132, 3244 3132, 3219 3107" 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="3329" y="3107">D7</text>
<polygon fill="#ffff80" points="3919 1707, 3894 1682, 3844 1682, 3819 1707, 3844 1732, 3894 1732, 3919 1707" 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="3709" y="1707">A0</text>
<polygon fill="#ffff80" points="3919 1807, 3894 1782, 3844 1782, 3819 1807, 3844 1832, 3894 1832, 3919 1807" 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="3709" y="1807">A1</text>
<polygon fill="#ffff80" points="3919 1907, 3894 1882, 3844 1882, 3819 1907, 3844 1932, 3894 1932, 3919 1907" 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="3709" y="1907">A2</text>
<polygon fill="#ffff80" points="3919 2007, 3894 1982, 3844 1982, 3819 2007, 3844 2032, 3894 2032, 3919 2007" 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="3709" y="2007">A3</text>
<polygon fill="#ffff80" points="3919 2107, 3894 2082, 3844 2082, 3819 2107, 3844 2132, 3894 2132, 3919 2107" 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="3709" y="2107">A4</text>
<polygon fill="#ffff80" points="3919 2207, 3894 2182, 3844 2182, 3819 2207, 3844 2232, 3894 2232, 3919 2207" 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="3709" y="2207">A5</text>
<polygon fill="#ffff80" points="3919 2307, 3894 2282, 3844 2282, 3819 2307, 3844 2332, 3894 2332, 3919 2307" 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="3709" y="2307">A6</text>
<polygon fill="#ffff80" points="3919 2407, 3894 2382, 3844 2382, 3819 2407, 3844 2432, 3894 2432, 3919 2407" 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="3709" y="2407">A7</text>
<polygon fill="#ffff80" points="3919 2507, 3894 2482, 3844 2482, 3819 2507, 3844 2532, 3894 2532, 3919 2507" 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="3689" y="2507">WR_OUT</text>
<polygon fill="#ffff80" points="3919 2607, 3894 2582, 3844 2582, 3819 2607, 3844 2632, 3894 2632, 3919 2607" 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="3689" y="2607">READ_OUT</text>
<polygon fill="#ffff80" points="3919 2707, 3894 2682, 3844 2682, 3819 2707, 3844 2732, 3894 2732, 3919 2707" 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="3709" y="2707">MIO</text>
<polygon fill="#ffff80" points="3919 2807, 3894 2782, 3844 2782, 3819 2807, 3844 2832, 3894 2832, 3919 2807" 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="3709" y="2807">INTA</text>
<polygon fill="#ffff80" points="3919 2907, 3894 2882, 3844 2882, 3819 2907, 3844 2932, 3894 2932, 3919 2907" 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="3709" y="2907">HLDA</text>
<polygon fill="#ffff80" points="3919 3007, 3894 2982, 3844 2982, 3819 3007, 3844 3032, 3894 3032, 3919 3007" 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="3709" y="3007">ALE</text>
<polygon fill="#ffff80" points="3919 3107, 3894 3082, 3844 3082, 3819 3107, 3844 3132, 3894 3132, 3919 3107" 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="3709" y="3107">DEN</text>
<polygon fill="#ffff80" points="3919 3207, 3894 3182, 3844 3182, 3819 3207, 3844 3232, 3894 3232, 3919 3207" 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="3709" y="3207">DTR</text>
<polyline fill="none" points="3219 2407, 2869 2407" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="3219 3107, 2869 3107" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2819" x2="2869" y1="3157" y2="3107"/>
<polyline fill="none" points="2869 2507, 3219 2507" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="2869 2607, 3219 2607" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="2869 2707, 3219 2707" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="2869 2807, 3219 2807" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="2869 2907, 3219 2907" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="2869 3007, 3219 3007" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2819" x2="2869" y1="3057" y2="3007"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2819" x2="2869" y1="2957" y2="2907"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2819" x2="2869" y1="2857" y2="2807"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2819" x2="2869" y1="2757" y2="2707"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2819" x2="2869" y1="2657" y2="2607"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2819" x2="2869" y1="2557" y2="2507"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="2819" x2="2869" y1="2457" y2="2407"/>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2869" y="2407">DBUS0</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2869" y="2507">DBUS1</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2869" y="2607">DBUS2</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2869" y="2707">DBUS3</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2869" y="2807">DBUS4</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2869" y="2907">DBUS5</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2869" y="3007">DBUS6</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="2869" y="3107">DBUS7</text>
<polyline fill="none" points="3909 1707, 4159 1707" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="3919 1807, 4169 1807" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="3919 1907, 4169 1907" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="3919 2007, 4169 2007" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="3919 2107, 4169 2107" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="3919 2207, 4169 2207" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="3919 2307, 4169 2307" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="3919 2407, 4169 2407" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4159" x2="4209" y1="1707" y2="1657"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4169" x2="4219" y1="1807" y2="1757"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4169" x2="4219" y1="1907" y2="1857"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4169" x2="4219" y1="2007" y2="1957"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4169" x2="4219" y1="2107" y2="2057"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4169" x2="4219" y1="2207" y2="2157"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4169" x2="4219" y1="2307" y2="2257"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="4169" x2="4219" y1="2407" y2="2357"/>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4009" y="1707">ABUS0</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4019" y="1807">ABUS1</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4019" y="1907">ABUS2</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4019" y="2007">ABUS3</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4019" y="2107">ABUS4</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4019" y="2207">ABUS5</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4019" y="2307">ABUS6</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="4019" y="2407">ABUS7</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1169" x2="1269" y1="2807" y2="2807"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="1069" y="2757"/>
<polyline fill="none" points="1079 2817, 1089 2817, 1089 2787, 1109 2787, 1109 2817, 1129 2817, 1129 2787, 1149 2787, 1149 2817" stroke="#000080" 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="1109" y="2747">C1</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1065" y="2903">CLOCK11</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="1209" y="2787">100Hz</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1169" x2="1269" y1="3007" y2="3007"/>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="30" font-weight="400" text-anchor="start" x="1109" y="3028">0</text>
<rect fill="#ffffff" fill-opacity="0.5" height="60" stroke="#800000" stroke-width="5" width="100" x="1069" y="2977"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1113" y="2968">2</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1000" y="3029">DCT</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="1070" y="3080">Key = S</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1629" x2="1569" y1="2607" y2="2607"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1709" x2="1769" y1="2607" y2="2607"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1669" x2="1669" y1="2647" y2="2707"/>
<circle cx="1669" cy="2639" fill="none" r="5" stroke="#000000" stroke-width="5"/>
<polygon fill="#ffffff" fill-opacity="0.5" points="1629 2557, 1629 2657, 1709 2607, 1629 2557" 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="1679" y="2527">U3</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1629" y="2557">NBUFFER</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1629" x2="1569" y1="2807" y2="2807"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1709" x2="1769" y1="2807" y2="2807"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1669" x2="1669" y1="2847" y2="2907"/>
<circle cx="1669" cy="2839" fill="none" r="5" stroke="#000000" stroke-width="5"/>
<polygon fill="#ffffff" fill-opacity="0.5" points="1629 2757, 1629 2857, 1709 2807, 1629 2757" 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="1679" y="2727">U4</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1629" y="2757">NBUFFER</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1529" x2="1469" y1="2707" y2="2707"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="1609" x2="1669" y1="2707" y2="2707"/>
<circle cx="1605" cy="2707" fill="none" r="5" stroke="#000000" stroke-width="5"/>
<polygon fill="#ffffff" fill-opacity="0.5" points="1529 2657, 1529 2757, 1599 2707, 1529 2657" 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="1549" y="2671">U5</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="1529" y="2803">NOT</text>
<rect fill="#80ff80" height="600" stroke="#800000" stroke-width="1" width="700" x="5519" y="2707"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="250" font-weight="700" text-anchor="start" x="5519" y="2607">MEM</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="5519" y="2657">MEM\MEM.dlsche</text>
<polygon fill="#ffff80" points="5519 2807, 5544 2782, 5594 2782, 5619 2807, 5594 2832, 5544 2832, 5519 2807" 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="5629" y="2807">WR_OUT</text>
<polygon fill="#ffff80" points="5519 2907, 5544 2882, 5594 2882, 5619 2907, 5594 2932, 5544 2932, 5519 2907" 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="5629" y="2907">CLK</text>
<polygon fill="#ffff80" points="5519 3007, 5544 2982, 5594 2982, 5619 3007, 5594 3032, 5544 3032, 5519 3007" 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="5629" y="3007">MIO</text>
<polygon fill="#ffff80" points="5519 3107, 5544 3082, 5594 3082, 5619 3107, 5594 3132, 5544 3132, 5519 3107" 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="5629" y="3107">READ_OUT</text>
<polygon fill="#ffff80" points="5519 3207, 5544 3182, 5594 3182, 5619 3207, 5594 3232, 5544 3232, 5519 3207" 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="5629" y="3207">ABUS[7..0]</text>
<polygon fill="#ffff80" points="6219 2807, 6194 2782, 6144 2782, 6119 2807, 6144 2832, 6194 2832, 6219 2807" 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="6009" y="2807">DBUS[7..0]</text>
<polyline fill="none" points="4219 2357, 4219 1137" stroke="#ff8057" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/>
<polyline fill="none" points="5519 3207, 5319 3207, 5319 1137" stroke="#ff8057" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/>
<polyline fill="none" points="7419 2707, 7219 2707, 7219 1137" stroke="#ff8057" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/>
<polyline fill="none" points="2819 2457, 2819 3907" stroke="#000080" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/>
<polyline fill="none" points="6219 2807, 6419 2807, 6419 3907" stroke="#000080" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/>
<rect fill="#80ff80" height="1100" stroke="#800000" stroke-width="1" width="700" x="7419" y="2207"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="250" font-weight="700" text-anchor="start" x="7419" y="2107">IO</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="7419" y="2157">IO\IO.dlsche</text>
<polygon fill="#ffff80" points="7419 2307, 7444 2282, 7494 2282, 7519 2307, 7494 2332, 7444 2332, 7419 2307" 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="7529" y="2307">MIO</text>
<polygon fill="#ffff80" points="7419 2407, 7444 2382, 7494 2382, 7519 2407, 7494 2432, 7444 2432, 7419 2407" 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="7529" y="2407">WR_OUT</text>
<polygon fill="#ffff80" points="7419 2507, 7444 2482, 7494 2482, 7519 2507, 7494 2532, 7444 2532, 7419 2507" 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="7529" y="2507">READ_OUT</text>
<polygon fill="#ffff80" points="7419 2607, 7444 2582, 7494 2582, 7519 2607, 7494 2632, 7444 2632, 7419 2607" 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="7529" y="2607">MIO</text>
<polygon fill="#ffff80" points="7419 2707, 7444 2682, 7494 2682, 7519 2707, 7494 2732, 7444 2732, 7419 2707" 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="7529" y="2707">A[7..0]</text>
<polygon fill="#ffff80" points="8119 2307, 8094 2282, 8044 2282, 8019 2307, 8044 2332, 8094 2332, 8119 2307" 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="7909" y="2307">IOW</text>
<polygon fill="#ffff80" points="8119 2407, 8094 2382, 8044 2382, 8019 2407, 8044 2432, 8094 2432, 8119 2407" 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="7909" y="2407">IOR</text>
<polygon fill="#ffff80" points="8119 2507, 8094 2482, 8044 2482, 8019 2507, 8044 2532, 8094 2532, 8119 2507" 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="7909" y="2507">CS0</text>
<polygon fill="#ffff80" points="8119 2607, 8094 2582, 8044 2582, 8019 2607, 8044 2632, 8094 2632, 8119 2607" 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="7909" y="2607">CS1</text>
<polygon fill="#ffff80" points="8119 2707, 8094 2682, 8044 2682, 8019 2707, 8044 2732, 8094 2732, 8119 2707" 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="7909" y="2707">CS2</text>
<polygon fill="#ffff80" points="8119 2807, 8094 2782, 8044 2782, 8019 2807, 8044 2832, 8094 2832, 8119 2807" 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="7909" y="2807">CS3</text>
<polygon fill="#ffff80" points="8119 2907, 8094 2882, 8044 2882, 8019 2907, 8044 2932, 8094 2932, 8119 2907" 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="7909" y="2907">CS4</text>
<polygon fill="#ffff80" points="8119 3007, 8094 2982, 8044 2982, 8019 3007, 8044 3032, 8094 3032, 8119 3007" 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="7909" y="3007">CS5</text>
<polygon fill="#ffff80" points="8119 3107, 8094 3082, 8044 3082, 8019 3107, 8044 3132, 8094 3132, 8119 3107" 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="7909" y="3107">CS6</text>
<polygon fill="#ffff80" points="8119 3207, 8094 3182, 8044 3182, 8019 3207, 8044 3232, 8094 3232, 8119 3207" 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="7909" y="3207">CS7</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="250" font-weight="700" text-anchor="start" x="99" y="317">实验四:可编程中断控制器8259级联实验</text>
<polyline fill="none" points="59 1137, 8119 1137" stroke="#ff8057" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/>
<polyline fill="none" points="29 3907, 8119 3907, 9469 3907, 9469 2457" stroke="#000080" stroke-linecap="round" stroke-linejoin="round" stroke-width="20"/>
<polyline fill="none" points="1769 2607, 1869 2607, 1869 2807, 1769 2807" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1569 2807, 1269 2807" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1269 3007, 1669 3007, 1669 2907" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1469 2707, 1469 3007" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="1569 2607, 1269 2607" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<rect fill="#80ff80" height="1400" stroke="#800000" stroke-width="1" width="700" x="9719" y="2007"/>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9719" y="1907">8259A</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="1957">8259A\8259A.dlsche</text>
<polygon fill="#ffff80" points="9719 2107, 9744 2082, 9794 2082, 9819 2107, 9794 2132, 9744 2132, 9719 2107" 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="9829" y="2107">CS</text>
<polygon fill="#ffff80" points="9719 2207, 9744 2182, 9794 2182, 9819 2207, 9794 2232, 9744 2232, 9719 2207" 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="9829" y="2207">WR</text>
<polygon fill="#ffff80" points="9719 2307, 9744 2282, 9794 2282, 9819 2307, 9794 2332, 9744 2332, 9719 2307" 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="9829" y="2307">RD</text>
<polygon fill="#ffff80" points="9719 2407, 9744 2382, 9794 2382, 9819 2407, 9794 2432, 9744 2432, 9719 2407" 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="9829" y="2407">D7</text>
<polygon fill="#ffff80" points="9719 2507, 9744 2482, 9794 2482, 9819 2507, 9794 2532, 9744 2532, 9719 2507" 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="9829" y="2507">D6</text>
<polygon fill="#ffff80" points="9719 2607, 9744 2582, 9794 2582, 9819 2607, 9794 2632, 9744 2632, 9719 2607" 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="9829" y="2607">D5</text>
<polygon fill="#ffff80" points="9719 2707, 9744 2682, 9794 2682, 9819 2707, 9794 2732, 9744 2732, 9719 2707" 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="9829" y="2707">D4</text>
<polygon fill="#ffff80" points="9719 2807, 9744 2782, 9794 2782, 9819 2807, 9794 2832, 9744 2832, 9719 2807" 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="9829" y="2807">D3</text>
<polygon fill="#ffff80" points="9719 2907, 9744 2882, 9794 2882, 9819 2907, 9794 2932, 9744 2932, 9719 2907" 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="9829" y="2907">D2</text>
<polygon fill="#ffff80" points="9719 3007, 9744 2982, 9794 2982, 9819 3007, 9794 3032, 9744 3032, 9719 3007" 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="9829" y="3007">D1</text>
<polygon fill="#ffff80" points="9719 3107, 9744 3082, 9794 3082, 9819 3107, 9794 3132, 9744 3132, 9719 3107" 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="9829" y="3107">D0</text>
<polygon fill="#ffff80" points="9719 3207, 9744 3182, 9794 3182, 9819 3207, 9794 3232, 9744 3232, 9719 3207" 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="9829" y="3207">CAS0</text>
<polygon fill="#ffff80" points="9719 3307, 9744 3282, 9794 3282, 9819 3307, 9794 3332, 9744 3332, 9719 3307" 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="9829" y="3307">CAS1</text>
<polygon fill="#ffff80" points="10419 2107, 10394 2082, 10344 2082, 10319 2107, 10344 2132, 10394 2132, 10419 2107" 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="10209" y="2107">A0</text>
<polygon fill="#ffff80" points="10419 2207, 10394 2182, 10344 2182, 10319 2207, 10344 2232, 10394 2232, 10419 2207" 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="10209" y="2207">INTA</text>
<polygon fill="#ffff80" points="10419 2307, 10394 2282, 10344 2282, 10319 2307, 10344 2332, 10394 2332, 10419 2307" 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="10209" y="2307">IR7</text>
<polygon fill="#ffff80" points="10419 2407, 10394 2382, 10344 2382, 10319 2407, 10344 2432, 10394 2432, 10419 2407" 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="10209" y="2407">IR6</text>
<polygon fill="#ffff80" points="10419 2507, 10394 2482, 10344 2482, 10319 2507, 10344 2532, 10394 2532, 10419 2507" 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="10209" y="2507">IR5</text>
<polygon fill="#ffff80" points="10419 2607, 10394 2582, 10344 2582, 10319 2607, 10344 2632, 10394 2632, 10419 2607" 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="10209" y="2607">IR4</text>
<polygon fill="#ffff80" points="10419 2707, 10394 2682, 10344 2682, 10319 2707, 10344 2732, 10394 2732, 10419 2707" 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="10209" y="2707">IR3</text>
<polygon fill="#ffff80" points="10419 2807, 10394 2782, 10344 2782, 10319 2807, 10344 2832, 10394 2832, 10419 2807" 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="10209" y="2807">IR2</text>
<polygon fill="#ffff80" points="10419 2907, 10394 2882, 10344 2882, 10319 2907, 10344 2932, 10394 2932, 10419 2907" 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="10209" y="2907">IR1</text>
<polygon fill="#ffff80" points="10419 3007, 10394 2982, 10344 2982, 10319 3007, 10344 3032, 10394 3032, 10419 3007" 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="10209" y="3007">IR0</text>
<polygon fill="#ffff80" points="10419 3107, 10394 3082, 10344 3082, 10319 3107, 10344 3132, 10394 3132, 10419 3107" 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="10209" y="3107">INT</text>
<polygon fill="#ffff80" points="10419 3207, 10394 3182, 10344 3182, 10319 3207, 10344 3232, 10394 3232, 10419 3207" 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="10209" y="3207">SP</text>
<polygon fill="#ffff80" points="10419 3307, 10394 3282, 10344 3282, 10319 3307, 10344 3332, 10394 3332, 10419 3307" 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="10209" y="3307">CAS2</text>
<polyline fill="none" points="9719 2407, 9519 2407" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 2507, 9519 2507" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 2607, 9519 2607" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 2707, 9519 2707" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 2807, 9519 2807" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 2907, 9519 2907" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 3007, 9519 3007" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 3107, 9519 3107" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="9469" x2="9519" y1="2457" y2="2407"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="9469" x2="9519" y1="2557" y2="2507"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="9469" x2="9519" y1="2657" y2="2607"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="9469" x2="9519" y1="2757" y2="2707"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="9469" x2="9519" y1="2857" y2="2807"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="9469" x2="9519" y1="2957" y2="2907"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="9469" x2="9519" y1="3057" y2="3007"/>
<line stroke="#000080" stroke-linecap="round" stroke-width="5" x1="9469" x2="9519" y1="3157" y2="3107"/>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="2407">DBUS7</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="2507">DBUS6</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="2607">DBUS5</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="2707">DBUS4</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="2807">DBUS3</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="2907">DBUS2</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="3007">DBUS1</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="3107">DBUS0</text>
<polyline fill="none" points="9719 2107, 8519 2107, 8519 2507, 8119 2507" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 2207, 8469 2207, 8469 2307, 8119 2307" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 2307, 8569 2307, 8569 2407, 8119 2407" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 2107, 10619 2107" 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="10459" y="2107">ABUS0</text>
<polyline fill="none" points="10419 3207, 10619 3207" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="10669" x2="10619" y1="3207" y2="3207"/>
<polygon fill="#ffffff" fill-opacity="0.5" points="10669 3207, 10719 3257, 10719 3157, 10669 3207" stroke="#000000" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#000000" font-family="微软雅黑" font-size="30" font-weight="700" text-anchor="start" transform="rotate(90 10679 3197)" x="10679" y="3197">1</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" transform="rotate(90 10749 3197)" x="10749" y="3197">U1</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" transform="rotate(90 10719 3137)" x="10719" y="3137">DIGITAL1</text>
<polyline fill="none" points="3919 2807, 4619 2807, 4619 1007, 10719 1007, 10719 2207, 10419 2207" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 3107, 10819 3107, 10819 907, 3119 907, 3119 1907, 3219 1907" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<text alignment-baseline="after-edge" fill="#000080" font-family="宋体" font-size="25" font-weight="400" text-anchor="start" x="10519" y="3107">高电平,中断请求</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="宋体" font-size="25" font-weight="400" text-anchor="start" x="10429" y="2207">低电平,中断应答</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="宋体" font-size="25" font-weight="400" text-anchor="start" x="10819" y="3227">SP=1,主片</text>
<polyline fill="none" points="13619 2807, 14219 2807, 14719 2807, 14719 2707" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="13619 2907, 14219 2907, 15019 2907, 15019 2807" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="13619 3007, 14219 3007, 15319 3007, 15319 2907" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 2807, 11019 2807, 11869 2807, 11869 2957" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 2907, 11019 2907, 11569 2907, 11569 3057, 11569 3807, 13919 3807, 13919 3107, 13619 3107" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 3007, 11019 3007, 11269 3007, 11269 3157" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="14619" x2="14719" y1="2707" y2="2707"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="14519" y="2657"/>
<polyline fill="none" points="14529 2607, 14609 2607" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="14569 2607, 14569 2657" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="14539 2737, 14569 2737, 14569 2677, 14599 2677" 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="14559" y="2594">C3</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="14429" y="2717">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="14519" y="2807">Key = C</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="14919" x2="15019" y1="2807" y2="2807"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="14819" y="2757"/>
<polyline fill="none" points="14829 2707, 14909 2707" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="14869 2707, 14869 2757" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="14839 2837, 14869 2837, 14869 2777, 14899 2777" 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="14859" y="2694">C4</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="14729" y="2817">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="14819" y="2907">Key = B</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="15219" x2="15319" y1="2907" y2="2907"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="15119" y="2857"/>
<polyline fill="none" points="15129 2807, 15209 2807" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="15169 2807, 15169 2857" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="15139 2937, 15169 2937, 15169 2877, 15199 2877" 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="15159" y="2794">C5</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="15029" y="2917">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="15119" y="3007">Key = A</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="11169" x2="11269" y1="3157" y2="3157"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="11069" y="3107"/>
<polyline fill="none" points="11079 3057, 11159 3057" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11119 3057, 11119 3107" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11089 3187, 11119 3187, 11119 3127, 11149 3127" 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="11109" y="3044">C6</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="10979" y="3167">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="11069" y="3257">Key = 0</text>
<line stroke="#000000" stroke-linecap="round" stroke-width="5" x1="11769" x2="11869" y1="2957" y2="2957"/>
<rect fill="#ffffb0" height="100" stroke="#800000" stroke-width="5" width="100" x="11669" y="2907"/>
<polyline fill="none" points="11679 2857, 11759 2857" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11719 2857, 11719 2907" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="11689 2987, 11719 2987, 11719 2927, 11749 2927" 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="11709" y="2844">C8</text>
<text alignment-baseline="after-edge" fill="#000000" font-family="Arial" font-size="25" font-weight="700" text-anchor="start" x="11579" y="2967">SCLK</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="11669" y="3057">Key = 2</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="宋体" font-size="25" font-weight="400" text-anchor="start" x="10919" y="2697">上升沿触发中断请求</text>
<rect fill="#80ff80" height="1400" stroke="#800000" stroke-width="1" width="700" x="12919" y="2007"/>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12919" y="1907">8259A_1</text>
<text alignment-baseline="after-edge" fill="#000080" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12919" y="1957">8259A\8259A.dlsche</text>
<polygon fill="#ffff80" points="12919 2107, 12944 2082, 12994 2082, 13019 2107, 12994 2132, 12944 2132, 12919 2107" 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="13029" y="2107">CS</text>
<polygon fill="#ffff80" points="12919 2207, 12944 2182, 12994 2182, 13019 2207, 12994 2232, 12944 2232, 12919 2207" 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="13029" y="2207">WR</text>
<polygon fill="#ffff80" points="12919 2307, 12944 2282, 12994 2282, 13019 2307, 12994 2332, 12944 2332, 12919 2307" 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="13029" y="2307">RD</text>
<polygon fill="#ffff80" points="12919 2407, 12944 2382, 12994 2382, 13019 2407, 12994 2432, 12944 2432, 12919 2407" 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="13029" y="2407">D7</text>
<polygon fill="#ffff80" points="12919 2507, 12944 2482, 12994 2482, 13019 2507, 12994 2532, 12944 2532, 12919 2507" 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="13029" y="2507">D6</text>
<polygon fill="#ffff80" points="12919 2607, 12944 2582, 12994 2582, 13019 2607, 12994 2632, 12944 2632, 12919 2607" 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="13029" y="2607">D5</text>
<polygon fill="#ffff80" points="12919 2707, 12944 2682, 12994 2682, 13019 2707, 12994 2732, 12944 2732, 12919 2707" 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="13029" y="2707">D4</text>
<polygon fill="#ffff80" points="12919 2807, 12944 2782, 12994 2782, 13019 2807, 12994 2832, 12944 2832, 12919 2807" 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="13029" y="2807">D3</text>
<polygon fill="#ffff80" points="12919 2907, 12944 2882, 12994 2882, 13019 2907, 12994 2932, 12944 2932, 12919 2907" 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="13029" y="2907">D2</text>
<polygon fill="#ffff80" points="12919 3007, 12944 2982, 12994 2982, 13019 3007, 12994 3032, 12944 3032, 12919 3007" 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="13029" y="3007">D1</text>
<polygon fill="#ffff80" points="12919 3107, 12944 3082, 12994 3082, 13019 3107, 12994 3132, 12944 3132, 12919 3107" 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="13029" y="3107">D0</text>
<polygon fill="#ffff80" points="12919 3207, 12944 3182, 12994 3182, 13019 3207, 12994 3232, 12944 3232, 12919 3207" 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="13029" y="3207">CAS0</text>
<polygon fill="#ffff80" points="12919 3307, 12944 3282, 12994 3282, 13019 3307, 12994 3332, 12944 3332, 12919 3307" 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="13029" y="3307">CAS1</text>
<polygon fill="#ffff80" points="13619 2107, 13594 2082, 13544 2082, 13519 2107, 13544 2132, 13594 2132, 13619 2107" 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="13409" y="2107">A0</text>
<polygon fill="#ffff80" points="13619 2207, 13594 2182, 13544 2182, 13519 2207, 13544 2232, 13594 2232, 13619 2207" 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="13409" y="2207">INTA</text>
<polygon fill="#ffff80" points="13619 2307, 13594 2282, 13544 2282, 13519 2307, 13544 2332, 13594 2332, 13619 2307" 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="13409" y="2307">IR7</text>
<polygon fill="#ffff80" points="13619 2407, 13594 2382, 13544 2382, 13519 2407, 13544 2432, 13594 2432, 13619 2407" 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="13409" y="2407">IR6</text>
<polygon fill="#ffff80" points="13619 2507, 13594 2482, 13544 2482, 13519 2507, 13544 2532, 13594 2532, 13619 2507" 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="13409" y="2507">IR5</text>
<polygon fill="#ffff80" points="13619 2607, 13594 2582, 13544 2582, 13519 2607, 13544 2632, 13594 2632, 13619 2607" 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="13409" y="2607">IR4</text>
<polygon fill="#ffff80" points="13619 2707, 13594 2682, 13544 2682, 13519 2707, 13544 2732, 13594 2732, 13619 2707" 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="13409" y="2707">IR3</text>
<polygon fill="#ffff80" points="13619 2807, 13594 2782, 13544 2782, 13519 2807, 13544 2832, 13594 2832, 13619 2807" 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="13409" y="2807">IR2</text>
<polygon fill="#ffff80" points="13619 2907, 13594 2882, 13544 2882, 13519 2907, 13544 2932, 13594 2932, 13619 2907" 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="13409" y="2907">IR1</text>
<polygon fill="#ffff80" points="13619 3007, 13594 2982, 13544 2982, 13519 3007, 13544 3032, 13594 3032, 13619 3007" 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="13409" y="3007">IR0</text>
<polygon fill="#ffff80" points="13619 3107, 13594 3082, 13544 3082, 13519 3107, 13544 3132, 13594 3132, 13619 3107" 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="13409" y="3107">INT</text>
<polygon fill="#ffff80" points="13619 3207, 13594 3182, 13544 3182, 13519 3207, 13544 3232, 13594 3232, 13619 3207" 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="13409" y="3207">SP</text>
<polygon fill="#ffff80" points="13619 3307, 13594 3282, 13544 3282, 13519 3307, 13544 3332, 13594 3332, 13619 3307" 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="13409" y="3307">CAS2</text>
<polyline fill="none" points="9719 3207, 9619 3207, 9619 3607, 12819 3607, 12819 3207, 12919 3207" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="9719 3307, 9669 3307, 9669 3557, 12769 3557, 12769 3307, 12919 3307" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="10419 3307, 10519 3307, 10519 3507, 13719 3507, 13719 3307, 13619 3307" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12919 2407, 12719 2407" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12919 2507, 12719 2507" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12919 2607, 12719 2607" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12919 2707, 12719 2707" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12919 2807, 12719 2807" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12919 2907, 12719 2907" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12919 3007, 12719 3007" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12919 3107, 12719 3107" 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="12719" y="2407">DBUS7</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12719" y="2507">DBUS6</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12719" y="2607">DBUS5</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12719" y="2707">DBUS4</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12719" y="2807">DBUS3</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12719" y="2907">DBUS2</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12719" y="3007">DBUS1</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12719" y="3107">DBUS0</text>
<polyline fill="none" points="10719 1007, 13819 1007, 13819 2207, 13619 2207" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12919 2307, 12719 2307" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12919 2207, 12719 2207" stroke="#0000ff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
<polyline fill="none" points="12919 2107, 12719 2107" 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="12719" y="2107">CS1</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12719" y="2207">IOW</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="12719" y="2307">IOR</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="2207">IOW</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="2307">IOR</text>
<text alignment-baseline="after-edge" fill="#800000" font-family="Times New Roman" font-size="25" font-weight="400" text-anchor="start" x="9519" y="2107">CS0</text>
<circle cx="7219" cy="1137" fill="#000080" r="25" stroke="#000080" stroke-width="5"/>
<circle cx="5319" cy="1137" fill="#000080" r="25" stroke="#000080" stroke-width="5"/>
<circle cx="4219" cy="1137" fill="#000080" r="25" stroke="#000080" stroke-width="5"/>
<circle cx="6419" cy="3907" fill="#000080" r="25" stroke="#000080" stroke-width="5"/>
<circle cx="2819" cy="3907" fill="#000080" r="25" stroke="#000080" stroke-width="5"/>
<circle cx="1469" cy="3007" fill="#0000ff" r="8" stroke="#0000ff" stroke-width="5"/>
<circle cx="10719" cy="1007" fill="#0000ff" r="8" stroke="#0000ff" stroke-width="5"/>
</svg>
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论