moved tsc and asm utilities to rx

This commit is contained in:
DH 2025-10-05 19:28:03 +03:00
parent bd215fab92
commit 640df36c48
121 changed files with 706 additions and 1225 deletions

View file

@ -1,7 +1,8 @@
#include "stdafx.h"
#include "PSF.h"
#include "util/asm.hpp"
#include "rx/align.hpp"
#include "rx/asm.hpp"
#include <span>
LOG_CHANNEL(psf_log, "PSF");
@ -307,7 +308,7 @@ namespace psf
}
// Align next section (data) offset
key_offset = utils::align(key_offset, 4);
key_offset = rx::alignUp(key_offset, 4);
// Generate header
header_t header{};