18 lines
355 B
C
Raw Permalink 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.

#ifndef MOUSE_H
#define MOUSE_H
#include "genesis.h"
typedef struct {
u8 valid; // =1 если мышь (сигнатура совпала)
u8 buttons;
s16 dx;
s16 dy;
u8 nibbles[10]; // для вывода RAW
} MouseData;
// Чтение мыши с порта
void read_mouse(MouseData* dst, volatile u8* port);
#endif