21 lines
441 B
C++
21 lines
441 B
C++
// Copyright (c) 2024 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
#pragma once
|
|
#include "dawn.hpp"
|
|
#include <pspkernel.h>
|
|
#include <pspdebug.h>
|
|
#include <pspctrl.h>
|
|
#include <pspdisplay.h>
|
|
|
|
PSP_MODULE_INFO("Controller", 0, 1, 1);
|
|
PSP_MAIN_THREAD_ATTR(PSP_THREAD_ATTR_USER);
|
|
|
|
/**
|
|
* Main entry to the program.
|
|
*
|
|
* @return The exit code of the program.
|
|
*/
|
|
int main(void); |