25 lines
774 B
C++
25 lines
774 B
C++
/*
|
|
* Alignment Definitions
|
|
*
|
|
* Copyright (C) 2019-2025 Udo Steinberg, BlueRock Security, Inc.
|
|
*
|
|
* This file is part of the NOVA microhypervisor.
|
|
*
|
|
* NOVA is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* NOVA is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License version 2 for more details.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "macros.hpp"
|
|
|
|
#define ALIGNMENT_NOVA 24 // 16 MiB
|
|
#define ALIGNMENT_ADDR(X) BITN(X)
|
|
#define ALIGNMENT_OFFS(X) (ALIGNMENT_ADDR(X) - 1)
|