MCB1700_Welcome/melody.h

21 lines
360 B
C
Raw Normal View History

2020-11-15 21:29:25 +01:00
/*! @file melody.h
@brief store Never Gonna Give You Up
@author Lukas Fürderer
@version V1.0
@date 15.11.2020
This file contains the main app function and init.
*/
#ifndef MELODY_H
#define MELODY_H
#include "stdint.h"
extern const uint32_t *cpu32EntryPoint;
extern const uint32_t **cppu32JumpLabels;
2020-11-30 18:49:36 +01:00
extern const char *cpcTexts[];
#endif