Skip to content
Open
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
4 changes: 2 additions & 2 deletions examples/6502.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// -- A 6502 compiler specalizing in 16-bit integer math and brute force loop unrolling --
// -- A 6502 compiler specializing in 16-bit integer math and brute force loop unrolling --
//

#include <str.h>
Expand Down Expand Up @@ -1091,7 +1091,7 @@ compile(char* code)
void
boids(void)
{
// This program simluates 9 boids starting in random positions and
// This program simulates 9 boids starting in random positions and
// move in random velocities while avoid one another. Boids bounce
// off the edge of the screen.
compile(
Expand Down