[Cosmetics]
- Update some headers that was incorrect - Reformat the code in all files to match the same code style - Removal of unwanted/unneeded files
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
* Paddle manager - The peTI-NESulator Project
|
||||
* paddle.h
|
||||
*
|
||||
* Created by Manoel TRAPIER.
|
||||
* Created by Manoël TRAPIER.
|
||||
* Copyright (c) 2003-2018 986-Studio. All rights reserved.
|
||||
*
|
||||
*/
|
||||
@@ -10,22 +10,14 @@
|
||||
#ifndef PADDLE_H
|
||||
#define PADDLE_H
|
||||
|
||||
typedef struct Paddle_
|
||||
typedef struct Paddle_
|
||||
{
|
||||
|
||||
uint8_t Bit;
|
||||
|
||||
uint8_t LastWrite;
|
||||
|
||||
} Paddle;
|
||||
|
||||
|
||||
uint8_t ReadPaddle(Paddle * pdl);
|
||||
|
||||
|
||||
void InitPaddle(Paddle * pdl);
|
||||
|
||||
void WritePaddle(Paddle * pdl, uint8_t val);
|
||||
|
||||
uint8_t ReadPaddle(Paddle *pdl);
|
||||
void InitPaddle(Paddle *pdl);
|
||||
void WritePaddle(Paddle *pdl, uint8_t val);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user