Update headers year Remove useless /// headers that eat lines for no reasons Fixed build issues because of stupid me doing stupid stuff in prototypes. Added color and mono GPU stub. Also a tad of code cleaning.
17 lines
543 B
C
17 lines
543 B
C
/******************************************************************************
|
|
* NewOswan
|
|
* nec_debugger.h:
|
|
*
|
|
* Created by Manoël Trapier on 14/04/2021.
|
|
* Copyright (c) 2014-2022 986-Studio. All rights reserved.
|
|
*
|
|
******************************************************************************/
|
|
|
|
#ifndef NEWOSWAN_SOURCE_NEC_NEC_DEBUGGER_H
|
|
#define NEWOSWAN_SOURCE_NEC_NEC_DEBUGGER_H
|
|
|
|
|
|
int nec_decode_instruction(uint16_t segment, uint16_t offset, char *buffer, unsigned int bufferSize);
|
|
|
|
#endif /* NEWOSWAN_SOURCE_NEC_NEC_DEBUGGER_H */
|