[tools] add separate maxwell disassembler, ir dumper, and spirv translator (#3453)

why not?

Signed-off-by: lizzie <lizzie@eden-emu.dev>

Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3453
Reviewed-by: MaranBr <maranbr@eden-emu.dev>
Reviewed-by: CamilleLaVey <camillelavey99@gmail.com>
This commit is contained in:
lizzie 2026-05-24 01:05:07 +02:00 committed by crueter
parent 2aa2ac7d9a
commit d9067d85af
No known key found for this signature in database
GPG key ID: 425ACD2D4830EBC6
12 changed files with 1137 additions and 1 deletions

View file

@ -0,0 +1,15 @@
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
#include "common/bit_field.h"
#include "common/common_types.h"
#include "spirv/unified1/spirv.hpp11"
#include <cassert>
#include <cstdlib>
#include <sirit/sirit.h>
#include <sys/stat.h>
int ReferenceImpl(int argc, char *argv[]) {
//todo
return EXIT_SUCCESS;
}