mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2025-02-27 08:33:39 +01:00
13 lines
280 B
C
13 lines
280 B
C
#include "version.h"
|
|
|
|
|
|
#define VERSION_MAJOR (2)
|
|
#define VERSION_MINOR (18)
|
|
#define VERSION_REVISION (0)
|
|
|
|
|
|
void version_firmware (uint32_t *version, uint32_t *revision) {
|
|
*version = ((VERSION_MAJOR << 16) | (VERSION_MINOR));
|
|
*revision = VERSION_REVISION;
|
|
}
|