1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-07-05 09:28:54 +00:00
millfork/docs/stdlib/gb.md
2019-07-15 14:21:50 +02:00

39 lines
746 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[< back to index](../doc_index.md)
# Game Boyoriented modules
## gb_hardware
The `gb_hardware` module is imported automatically on Game Boy targets.
TODO
## gb_header_small
The `gb_header_small` module is imported automatically on small Game Boy targets.
It contains the default header for 32K Game Boy programs.
## gb_joy
Provides an interface for reading joypads that is compatible with the `joy` module.
#### `alias input_a = input_btn`
1 if A button pressed, 0 id not pressed.
#### `byte input_b`
1 if B button pressed, 0 id not pressed.
#### `byte input_select`
1 if Select button pressed, 0 id not pressed.
#### `byte input_start`
1 if Start button pressed, 0 id not pressed.
#### `void read_joy()`
Reads the joypad.