2024-04-12 01:35:41 +00:00
|
|
|
#include <config.hpp>
|
2024-08-01 10:53:17 +00:00
|
|
|
#include <spdlog/cfg/env.h>
|
|
|
|
#include <spdlog/spdlog.h>
|
2024-04-09 09:03:21 +00:00
|
|
|
#include <types.h>
|
2024-07-10 12:27:09 +00:00
|
|
|
|
2024-08-01 10:53:17 +00:00
|
|
|
int gdbstub_loop();
|
2024-04-09 09:03:21 +00:00
|
|
|
|
2024-03-29 02:35:49 +00:00
|
|
|
int main(int argc, char **argv, char **env) {
|
2024-08-01 10:53:17 +00:00
|
|
|
spdlog::cfg::load_env_levels();
|
2024-04-03 14:39:33 +00:00
|
|
|
config.cli_parse(argc, argv);
|
2024-08-01 10:53:17 +00:00
|
|
|
spdlog::debug("Configuration parsed");
|
2024-07-10 12:27:09 +00:00
|
|
|
return gdbstub_loop();
|
2024-03-13 06:53:31 +00:00
|
|
|
}
|