2023-12-22 11:57:49 +00:00
|
|
|
// SPDX-FileCopyrightText: 2002-2023 PCSX2 Dev Team
|
|
|
|
// SPDX-License-Identifier: LGPL-3.0+
|
2020-08-19 08:19:28 +00:00
|
|
|
|
2022-05-18 13:27:23 +00:00
|
|
|
#include "common/Pcsx2Defs.h"
|
2021-08-13 05:39:40 +00:00
|
|
|
|
2020-08-19 08:19:28 +00:00
|
|
|
void runCodegenTest(void (*exec)(void *base), const char* description, const char* expected);
|
|
|
|
|
2022-11-06 07:22:00 +00:00
|
|
|
#define CODEGEN_TEST(command, expected) runCodegenTest([](void *base){ command; }, #command, expected)
|