-
Notifications
You must be signed in to change notification settings - Fork 9
/
ben-eater-8bit-computer.html
131 lines (100 loc) · 2.96 KB
/
ben-eater-8bit-computer.html
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<!--
(C) Klemens Ullmann-Marx / www.ull.at
License: GPLv3
-->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script
src="https://code.jquery.com/jquery-3.6.0.slim.min.js"
integrity="sha256-u7e5khyithlIdTpu22PHhENmPcRdFiHRjhAuHcs05RI="
crossorigin="anonymous"></script>
<script type="text/javascript" src="ic-label-creator.js"></script>
<script type="text/javascript" src="chips.js"></script>
</head>
<body style="margin: 5px; padding: 0;">
<svg id="page" >
</svg>
<p style="font-family: sans-serif; font-size: 10px;">
IC-Label Set "Ben Eater 8-Bit Breadboard Computer SAP-1"<br />
<a href="https://github.com/klemens-u/ic-label-creator">https://github.com/klemens-u/ic-label-creator</a>
(C) 2020 by Klemens Ullmann-Marx / <a href="https:/www.ull.at">www.ull.at</a>
</p>
<script>
var globals = {
gimmeColor : true,
pageWidth : 210 - 20, // A4 height minus margin
pageHeight : 279.4 - 40, // ANSI letter height minus margin
pinDistance : 2.54,
// Starting position for first chip on page
chipPositionX : 0,
chipPositionY : 0,
svgStrokeWidth : .1,
svgStrokeOffset : .1,
defaultChipLogicFamily : 'LS',
defaultChipSeries : '74',
};
$(document).ready(function() {
// Set svg container to page size
$('#page').attr({
width: globals.pageWidth + 'mm',
height: globals.pageHeight + 'mm',
});
// Draw chips
drawChip('555');
drawChip('555');
drawChip('555');
drawChip('555');
drawChip('74LS00');
drawChip('74LS00');
drawChip('74LS02');
drawChip('74LS04');
drawChip('74LS04');
drawChip('74LS04');
drawChip('74LS04');
drawChip('74LS04');
drawChip('74LS08');
drawChip('74LS08');
drawChip('74LS08');
drawChip('74LS32');
drawChip('74LS86');
drawChip('74LS86');
drawChip('74LS107');
drawChip('74LS138');
drawChip('74LS139');
drawChip('74LS157');
drawChip('74LS157');
drawChip('74LS157');
drawChip('74LS157');
drawChip('74LS161');
drawChip('74LS161');
drawChip('74LS173');
drawChip('74LS173');
drawChip('74LS173');
drawChip('74LS173');
drawChip('74LS173');
drawChip('74LS173');
drawChip('74LS173');
drawChip('74LS173');
drawChip('74189');
drawChip('74189');
drawChip('74LS245');
drawChip('74LS245');
drawChip('74LS245');
drawChip('74LS245');
drawChip('74LS245');
drawChip('74LS245');
drawChip('74LS273');
drawChip('74LS283');
drawChip('74LS283');
drawChip('28C16');
drawChip('28C16');
drawChip('28C16');
drawChip('74LS595', 'HC');
drawChip('74LS595', 'HC');
});
</script>
</body>
</html>