1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
/*
* TOP2049 Open Source programming suite
*
* Microchip DIP28 primary designed for MCU PIC16F1902 implementation
* FPGA bottomhalf implementation
*
* Copyright (c) 2013 Pavel Stemberk <stemberk@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
`define DUT_SDIO 38
`include "microchip01.vh"
`ALL_WITHOUT_ZIF(microchip01dip28, 32'hDE07, 1)
`ZIF_UNUSED(1)
`ZIF_UNUSED(2)
`ZIF_UNUSED(3)
`ZIF_UNUSED(4)
`ZIF_UNUSED(5)
`ZIF_UNUSED(6)
`ZIF_UNUSED(7)
`ZIF_UNUSED(8)
`ZIF_UNUSED(9)
`ZIF_UNUSED(10)
bufif0(zif[11], low, dut_vpp); /* VPP/Reset */
`ZIF_UNUSED(12)
`ZIF_UNUSED(13)
`ZIF_UNUSED(14)
`ZIF_UNUSED(15)
`ZIF_UNUSED(16)
`ZIF_UNUSED(17)
`ZIF_UNUSED(18)
`ZIF_UNUSED(19)
`ZIF_UNUSED(20)
`ZIF_UNUSED(21)
`ZIF_UNUSED(22)
`ZIF_UNUSED(23)
`ZIF_UNUSED(24)
`ZIF_UNUSED(25)
`ZIF_UNUSED(26)
`ZIF_UNUSED(27)
`ZIF_UNUSED(28)
bufif0(zif[29], low, low); /* GND */
bufif0(zif[30], high, low); /* VCC */
`ZIF_UNUSED(31)
`ZIF_UNUSED(32)
`ZIF_UNUSED(33)
`ZIF_UNUSED(34)
`ZIF_UNUSED(35)
`ZIF_UNUSED(36)
bufif0(zif[37], dut_sci, low); /* SCI */
bufif0(zif[38], dut_sdio_value, !dut_sdio_driven); /* SDO */
`ZIF_UNUSED(39)
`ZIF_UNUSED(40)
`ZIF_UNUSED(41)
`ZIF_UNUSED(42)
`ZIF_UNUSED(43)
`ZIF_UNUSED(44)
`ZIF_UNUSED(45)
`ZIF_UNUSED(46)
`ZIF_UNUSED(47)
`ZIF_UNUSED(48)
`BOTTOMHALF_END
|