Skip to content

Commit b0e0ad7

Browse files
simonwclaude
andauthored
Add hallucination warning to Turbo Pascal deconstructed page (#260)
* Add hallucination warning to Turbo Pascal deconstructed page Adds a prominent warning callout between the header stats and the Binary Memory Map section, noting that the assembly annotations are LLM-generated hallucinated slop and linking to the relevant blog post. https://claude.ai/code/session_01BypCa8BeKJWsbHwgbPfGxv * Better wording * Tweak margin on warning box --------- Co-authored-by: Claude <noreply@anthropic.com>
1 parent 34c38e2 commit b0e0ad7

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

turbo-pascal-deconstructed.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,25 @@
348348
}
349349
.callout .icon { font-size: 1.2rem; margin-right: 0.5rem; }
350350

351+
.warning-callout {
352+
background: linear-gradient(135deg, rgba(239,83,80,0.12), rgba(255,167,38,0.06));
353+
border: 2px solid rgba(239,83,80,0.4);
354+
border-radius: 8px;
355+
padding: 1.2rem 1.5rem;
356+
margin: 1.5rem;
357+
max-width: 1200px;
358+
font-size: 0.95rem;
359+
color: var(--fg);
360+
text-align: center;
361+
}
362+
.warning-callout .icon { font-size: 1.4rem; margin-right: 0.5rem; }
363+
.warning-callout a {
364+
color: var(--red);
365+
text-decoration: underline;
366+
font-weight: 600;
367+
}
368+
.warning-callout a:hover { color: var(--amber); }
369+
351370
/* === FOOTER === */
352371
.footer {
353372
text-align: center;
@@ -383,6 +402,11 @@ <h1>TURBO<span>.COM</span></h1>
383402
</div>
384403
</div>
385404

405+
<div class="warning-callout">
406+
<span class="icon">&#9888;</span>
407+
<strong>Warning:</strong> The annotations against the assembly on this page are <a href="https://simonwillison.net/2026/Mar/20/turbo-pascal/#hallucinated-slop">hallucinated slop</a> with invented details that do not accurately describe the code.
408+
</div>
409+
386410
<div class="binary-map-section">
387411
<h2>Binary Memory Map &mdash; 0x0100 to 0x9C33</h2>
388412
<div class="binary-map" id="binaryMap"></div>

0 commit comments

Comments
 (0)