Skip to content

Commit

Permalink
templates: Remove trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
aliceisjustplaying committed Aug 26, 2024
1 parent eb1e75c commit 52bcf39
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
12 changes: 6 additions & 6 deletions templates/c/wasmdemo.wasmp
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,26 @@
-- script: wasm

"""""""""""""""""""""""""""""""""""""""
WASM is a binary format. The demo
binary code is embedded in this
WASM is a binary format. The demo
binary code is embedded in this
cartridge, the source code is not.
Run the cart to see the demo.

This demo exits for completeness, but
you can't (yet) develop WASM projects
using the built-in editor.

The code used to build this project
The code used to build this project
can be found in the TIC-80 repo:

https://github.com/nesbox/TIC-80/templates/c

This demo was built with C, but many
languages are supported. You simply
This demo was built with C, but many
languages are supported. You simply
build your project with your external
compiler, then import the final WASM
binary into your cartridge:

import binary out.wasm

See README.md for details.
Expand Down
2 changes: 1 addition & 1 deletion templates/d/src/tic80.d
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module tic80;
extern(C):

struct MouseData {
short x; short y;
short x; short y;
byte scrollx; byte scrolly;
bool left; bool middle; bool right;
}
Expand Down
12 changes: 6 additions & 6 deletions templates/d/wasmdemo.wasmp
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,26 @@
-- script: wasm

"""""""""""""""""""""""""""""""""""""""
WASM is a binary format. The demo
binary code is embedded in this
WASM is a binary format. The demo
binary code is embedded in this
cartridge, the source code is not.
Run the cart to see the demo.

This demo exits for completeness, but
you can't (yet) develop WASM projects
using the built-in editor.

The code used to build this project
The code used to build this project
can be found in the TIC-80 repo:

https://github.com/nesbox/TIC-80/templates/d

This demo was built with D, but many
languages are supported. You simply
This demo was built with D, but many
languages are supported. You simply
build your project with your external
compiler, then import the final WASM
binary into your cartridge:

import binary out.wasm

See README.md for details.
Expand Down
12 changes: 6 additions & 6 deletions templates/zig/cart.wasmp
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,27 @@
-- script: wasm

"""""""""""""""""""""""""""""""""""""""
WASM is a binary format. The demo
binary code is embedded in this
WASM is a binary format. The demo
binary code is embedded in this
cartridge, the source code is not.
Run the cart to see the demo.

This demo exits for completeness, but
you can't (yet) develop WASM projects
using the built-in editor.

The code used to build this project
The code used to build this project
can be found in the TIC-80 repo:

https://github.com/nesbox/TIC-80
/demos/wasm/

This demo was built with Zig, but many
languages are supported. You simply
This demo was built with Zig, but many
languages are supported. You simply
build your project with your external
compiler, then import the final WASM
binary into your cartridge:

import binary out.wasm

To learn more visit our Wiki and
Expand Down

0 comments on commit 52bcf39

Please sign in to comment.