mirror of https://github.com/PCSX2/pcsx2.git
9 lines
319 B
C
9 lines
319 B
C
// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team
|
|
// SPDX-License-Identifier: GPL-3.0+
|
|
|
|
#include "common/Pcsx2Defs.h"
|
|
|
|
void runCodegenTest(void (*exec)(void *base), const char* description, const char* expected);
|
|
|
|
#define CODEGEN_TEST(command, expected) runCodegenTest([](void *base){ command; }, #command, expected)
|