[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:
Godzil
2018-02-02 17:43:15 +00:00
parent ad195d6c20
commit cdda587579
77 changed files with 4001 additions and 4972 deletions

View File

@@ -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