Skip to content

Commit

Permalink
Rename examples to use underscores instead of hyphens
Browse files Browse the repository at this point in the history
  • Loading branch information
ry755 committed Nov 30, 2020
1 parent 92454e8 commit afdba57
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ High-level functions are provided as well as low-level functions, making it easy
This emulator is a work-in-progress and currently only supports the Graphics I and Text video modes, and sprites are unsupported in all modes. In its current state, this emulator is more of a TMS9918 (non-A variant) emulator.

## Example
This is a small [example program](examples/high-level-text/src/main.rs) which uses Text mode to display a hello world message, showing how to use the high-level functions:
![High-level Text mode example](examples/high-level-text/images/screenshot.png)
This is a small [example program](examples/high_level_text/src/main.rs) which uses Text mode to display a hello world message, showing how to use the high-level functions:
![High-level Text mode example](examples/high_level_text/images/screenshot.png)

A similar [example program](examples/low-level-text/src/main.rs) is available which shows how to use the low-level functions to display the same hello world message.
A similar [example program](examples/low_level_text/src/main.rs) is available which shows how to use the low-level functions to display the same hello world message.

## License

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "high-level-text"
name = "high_level_text"
version = "0.1.0"
authors = ["ry755"]
edition = "2018"
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "low-level-text"
name = "low_level_text"
version = "0.1.0"
authors = ["ry755"]
edition = "2018"
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit afdba57

Please sign in to comment.