/* * Copyright (c) 2022, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #ifdef __cplusplus extern "C" { #endif struct __attribute__((packed)) __mcontext { uint64_t x[31]; uint64_t sp; uint64_t pc; }; #ifdef __cplusplus } #endif