mirror of
https://github.com/KarolS/millfork.git
synced 2024-11-01 05:05:32 +00:00
17 lines
261 B
Plaintext
17 lines
261 B
Plaintext
// Generic module for mouse support
|
|
// Resolutions up to 512x256 are supported
|
|
|
|
import x_coord
|
|
|
|
// Mouse X coordinate
|
|
x_coord mouse_x
|
|
|
|
// Mouse Y coordinate
|
|
byte mouse_y
|
|
|
|
// Left mouse button pressed
|
|
byte mouse_lbm
|
|
|
|
// Right mouse button pressed
|
|
byte mouse_rbm
|