Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions turbo-pascal-deconstructed.html
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,25 @@
}
.callout .icon { font-size: 1.2rem; margin-right: 0.5rem; }

.warning-callout {
background: linear-gradient(135deg, rgba(239,83,80,0.12), rgba(255,167,38,0.06));
border: 2px solid rgba(239,83,80,0.4);
border-radius: 8px;
padding: 1.2rem 1.5rem;
margin: 1.5rem;
max-width: 1200px;
font-size: 0.95rem;
color: var(--fg);
text-align: center;
}
.warning-callout .icon { font-size: 1.4rem; margin-right: 0.5rem; }
.warning-callout a {
color: var(--red);
text-decoration: underline;
font-weight: 600;
}
.warning-callout a:hover { color: var(--amber); }

/* === FOOTER === */
.footer {
text-align: center;
Expand Down Expand Up @@ -383,6 +402,11 @@ <h1>TURBO<span>.COM</span></h1>
</div>
</div>

<div class="warning-callout">
<span class="icon">&#9888;</span>
<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.
</div>

<div class="binary-map-section">
<h2>Binary Memory Map &mdash; 0x0100 to 0x9C33</h2>
<div class="binary-map" id="binaryMap"></div>
Expand Down
Loading