Skip to content

Commit 6b43ab7

Browse files
tone down hype in README and GitHub Pages, make language more factual (#55)
Agent-Logs-Url: https://github.com/OpenRakis/Cryogenic/sessions/f304a044-b004-4bb5-90fd-d574a62b1957 Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: maximilien-noal <1087524+maximilien-noal@users.noreply.github.com>
1 parent 5807f49 commit 6b43ab7

2 files changed

Lines changed: 14 additions & 15 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141

4242
## About the Project
4343

44-
Cryogenic is an ambitious reverse engineering project dedicated to understanding and modernizing **Cryo's Dune** (CD Version, 1992) - one of the most atmospheric adventure games of the early 90s.
44+
Cryogenic is a reverse engineering project dedicated to understanding **Cryo's Dune** (CD Version, 1992).
4545

46-
Using the powerful [Spice86](https://github.com/OpenRakis/Spice86) reverse engineering toolkit, we're gradually rewriting the game from x86 assembly into readable, maintainable C# code. The game is **fully playable** right now, complete with sound and music support.
46+
Using [Spice86](https://github.com/OpenRakis/Spice86), a reverse engineering toolkit for 16-bit DOS programs, we're gradually rewriting the game from x86 assembly into readable, maintainable C# code. The game is fully playable, including sound and music support.
4747

4848
As we continue to replace assembly routines with C# implementations, the codebase becomes more accessible to modern developers while preserving the exact behavior of the original DOS executable.
4949

@@ -78,9 +78,9 @@ As we continue to replace assembly routines with C# implementations, the codebas
7878

7979
### What is Spice86?
8080

81-
[Spice86](https://github.com/OpenRakis/Spice86) is a revolutionary reverse engineering toolkit and PC emulator specifically designed for 16-bit real mode x86 programs. Unlike traditional emulators that simply run old software, Spice86 enables you to **gradually modernize** legacy DOS applications by replacing assembly code with high-level C# implementations.
81+
[Spice86](https://github.com/OpenRakis/Spice86) is a reverse engineering toolkit and PC emulator designed for 16-bit real mode x86 programs. It enables gradually replacing legacy DOS application assembly code with high-level C# implementations.
8282

83-
Built on .NET 8, Spice86 provides a unique hybrid execution model where the original DOS executable runs alongside your C# overrides, allowing for incremental reverse engineering and testing.
83+
Built on .NET 8, Spice86 provides a hybrid execution model where the original DOS executable runs alongside C# overrides, allowing for incremental reverse engineering and testing.
8484

8585
### Key Features
8686

docs/index.html

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ <h1 class="text-6xl md:text-7xl font-orbitron font-black mb-6 text-transparent b
9191
</h1>
9292
<p class="text-2xl md:text-3xl mb-4 text-gray-300">Reverse Engineering the Classic Dune Game</p>
9393
<p class="text-lg md:text-xl mb-8 text-gray-400 max-w-3xl mx-auto">
94-
Modernizing Cryo's iconic 1992 Dune adventure through hybrid ASM/C# technology powered by Spice86
94+
Rewriting Cryo's 1992 Dune game from x86 assembly into C# using the Spice86 hybrid execution model
9595
</p>
9696
<div class="flex flex-wrap justify-center gap-4 mb-12">
9797
<a href="https://github.com/OpenRakis/Cryogenic/releases" class="bg-spice hover-glow px-8 py-3 rounded-lg font-semibold transition">
@@ -121,13 +121,13 @@ <h1 class="text-6xl md:text-7xl font-orbitron font-black mb-6 text-transparent b
121121
<h2 class="text-4xl font-orbitron font-bold mb-8 text-center text-spice">About the Project</h2>
122122
<div class="max-w-4xl mx-auto">
123123
<p class="text-lg mb-6 text-gray-300 leading-relaxed">
124-
Cryogenic is an ambitious reverse engineering project dedicated to understanding and modernizing
125-
<strong>Cryo's Dune</strong> (CD Version, 1992) - one of the most atmospheric adventure games of the early 90s.
126-
Using the powerful <a href="https://github.com/OpenRakis/Spice86" class="text-spice hover:underline">Spice86</a>
127-
reverse engineering toolkit, we're gradually rewriting the game from x86 assembly into readable, maintainable C# code.
124+
Cryogenic is a reverse engineering project focused on understanding
125+
<strong>Cryo's Dune</strong> (CD Version, 1992).
126+
Using <a href="https://github.com/OpenRakis/Spice86" class="text-spice hover:underline">Spice86</a>,
127+
a reverse engineering toolkit for 16-bit DOS programs, we're gradually rewriting the game from x86 assembly into readable, maintainable C# code.
128128
</p>
129129
<p class="text-lg mb-6 text-gray-300 leading-relaxed">
130-
The game is <strong>fully playable</strong> right now, complete with sound and music support. As we continue
130+
The game is fully playable, including sound and music support. As we continue
131131
to replace assembly routines with C# implementations, the codebase becomes more accessible to modern developers
132132
while preserving the exact behavior of the original DOS executable.
133133
</p>
@@ -243,13 +243,12 @@ <h2 class="text-4xl font-orbitron font-bold mb-8 text-center text-spice">The Spi
243243
<h3 class="text-2xl font-bold mb-4 text-spice font-orbitron">What is Spice86?</h3>
244244
<p class="text-lg text-gray-300 mb-4 leading-relaxed">
245245
<a href="https://github.com/OpenRakis/Spice86" class="text-spice hover:underline font-semibold">Spice86</a>
246-
is a revolutionary reverse engineering toolkit and PC emulator specifically designed for 16-bit real mode x86 programs.
247-
Unlike traditional emulators that simply run old software, Spice86 enables you to <strong>gradually modernize</strong>
248-
legacy DOS applications by replacing assembly code with high-level C# implementations.
246+
is a reverse engineering toolkit and PC emulator designed for 16-bit real mode x86 programs.
247+
It enables gradually replacing legacy DOS application assembly code with high-level C# implementations.
249248
</p>
250249
<p class="text-lg text-gray-300 leading-relaxed">
251-
Built on .NET 8, Spice86 provides a unique hybrid execution model where the original DOS executable runs
252-
alongside your C# overrides, allowing for incremental reverse engineering and testing.
250+
Built on .NET 8, Spice86 provides a hybrid execution model where the original DOS executable runs
251+
alongside C# overrides, allowing for incremental reverse engineering and testing.
253252
</p>
254253
</div>
255254

0 commit comments

Comments
 (0)