This commit is contained in:
parent
7575c06bfa
commit
669e0ef96c
1
.prettierignore
Normal file
1
.prettierignore
Normal file
|
@ -0,0 +1 @@
|
||||||
|
_includes/
|
|
@ -10,7 +10,7 @@ code[class*="language-"],
|
||||||
pre[class*="language-"] {
|
pre[class*="language-"] {
|
||||||
color: var(--color-fg); /* base05 */
|
color: var(--color-fg); /* base05 */
|
||||||
background: var(--color-black);
|
background: var(--color-black);
|
||||||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
white-space: pre;
|
white-space: pre;
|
||||||
|
@ -29,15 +29,19 @@ pre[class*="language-"] {
|
||||||
hyphens: none;
|
hyphens: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
pre[class*="language-"]::-moz-selection,
|
||||||
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
pre[class*="language-"] ::-moz-selection,
|
||||||
|
code[class*="language-"]::-moz-selection,
|
||||||
|
code[class*="language-"] ::-moz-selection {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
background: var(--color-black-bright); /* base02 */
|
background: var(--color-black-bright); /* base02 */
|
||||||
}
|
}
|
||||||
|
|
||||||
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
pre[class*="language-"]::selection,
|
||||||
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
pre[class*="language-"] ::selection,
|
||||||
|
code[class*="language-"]::selection,
|
||||||
|
code[class*="language-"] ::selection {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
background: var(--color-black-bright); /* base02 */
|
background: var(--color-black-bright); /* base02 */
|
||||||
|
@ -53,44 +57,44 @@ code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
||||||
/* Code blocks */
|
/* Code blocks */
|
||||||
pre[class*="language-"] {
|
pre[class*="language-"] {
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
margin: .5em 0;
|
margin: 0.5em 0;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
:not(pre) > code[class*="language-"],
|
:not(pre) > code[class*="language-"],
|
||||||
pre[class*="language-"] {
|
pre[class*="language-"] {
|
||||||
background: #{{base00-hex}}; /* base00 */
|
background: var(--color-bg); /* base00 */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Inline code */
|
/* Inline code */
|
||||||
:not(pre) > code[class*="language-"] {
|
:not(pre) > code[class*="language-"] {
|
||||||
padding: .1em;
|
padding: 0.1em;
|
||||||
border-radius: .3em;
|
border-radius: 0.3em;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.comment,
|
.token.comment,
|
||||||
.token.prolog,
|
.token.prolog,
|
||||||
.token.cdata {
|
.token.cdata {
|
||||||
color: #{{base03-hex}}; /* base03 */
|
color: var(--color-white); /* base03 */
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.entity,
|
.token.entity,
|
||||||
.language-css .token.string,
|
.language-css .token.string,
|
||||||
.style .token.string {
|
.style .token.string {
|
||||||
color: #{{base04-hex}}; /* base04 */
|
color: var(--color-white-bright); /* base04 */
|
||||||
background: #{{base01-hex}}; /* base01 */
|
background: var(--color-black); /* base01 */
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.punctuation {
|
.token.punctuation {
|
||||||
color: #{{base05-hex}}; /* base05 */
|
color: var(--color-fg); /* base05 */
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.variable,
|
.token.variable,
|
||||||
.token.tag,
|
.token.tag,
|
||||||
.token.operator,
|
.token.operator,
|
||||||
.token.deleted {
|
.token.deleted {
|
||||||
color: var(--color-blue); /* base08 */
|
color: var(--color-blue-bright); /* base08 */
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.property,
|
.token.property,
|
||||||
|
@ -149,6 +153,5 @@ pre[class*="language-"] {
|
||||||
}
|
}
|
||||||
|
|
||||||
.namespace {
|
.namespace {
|
||||||
opacity: .7;
|
opacity: 0.7;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,6 @@ At this point we needed to test them out. And this is where I realized that,
|
||||||
despite picking the unit with the least yellowing, mine didn't work.
|
despite picking the unit with the least yellowing, mine didn't work.
|
||||||
I saw the cursor, and a line for the status bar, but no characters in sight:
|
I saw the cursor, and a line for the status bar, but no characters in sight:
|
||||||
|
|
||||||
|
|
||||||
Thankfully, the scuffed one worked, so I was able to confirm that
|
Thankfully, the scuffed one worked, so I was able to confirm that
|
||||||
I could interact with it. However, the geometry was bad and there seemed
|
I could interact with it. However, the geometry was bad and there seemed
|
||||||
to be some shaking in the text, meaning a power supply wasn't being stable
|
to be some shaking in the text, meaning a power supply wasn't being stable
|
||||||
|
@ -81,7 +80,6 @@ alongside the character itself, or in a separate "Attribute RAM", which is read
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
With my new test setup, I was able to find and probe pins from the underside of the board.
|
With my new test setup, I was able to find and probe pins from the underside of the board.
|
||||||
One of the challenges here is that there are multiple busses, each with potentially multiple masters.
|
One of the challenges here is that there are multiple busses, each with potentially multiple masters.
|
||||||
Not only do you need to probe a data line, you also need to have a probe for whatever makes the chip
|
Not only do you need to probe a data line, you also need to have a probe for whatever makes the chip
|
||||||
|
@ -98,13 +96,11 @@ Uh, guys?
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
It can't possibly be this, right? U17 and U15 are part of character storage,
|
It can't possibly be this, right? U17 and U15 are part of character storage,
|
||||||
and I did see the font RAM output non-zero, meaning it had to have rendered
|
and I did see the font RAM output non-zero, meaning it had to have rendered
|
||||||
something! I quickly cleaned up the joints and powered it on. I couldn't see it
|
something! I quickly cleaned up the joints and powered it on. I couldn't see it
|
||||||
at first, but it worked. Thankfully I found this before starting to replace other chips.
|
at first, but it worked. Thankfully I found this before starting to replace other chips.
|
||||||
|
|
||||||
|
|
||||||
# Takeaway
|
# Takeaway
|
||||||
|
|
||||||
This highlights the two styles of troubleshooting:
|
This highlights the two styles of troubleshooting:
|
||||||
|
|
|
@ -27,7 +27,7 @@ export default async function (eleventyConfig) {
|
||||||
|
|
||||||
// App plugins
|
// App plugins
|
||||||
eleventyConfig.addPreprocessor("drafts", "*", (data, _content) => {
|
eleventyConfig.addPreprocessor("drafts", "*", (data, _content) => {
|
||||||
if(data.draft && process.env.ELEVENTY_RUN_MODE === "build") {
|
if (data.draft && process.env.ELEVENTY_RUN_MODE === "build") {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue