mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 06:32:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			344 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			344 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Leon Albrecht <leon2002.la@gmail.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/Platform.h>
 | |
| 
 | |
| #if ARCH(X86_64)
 | |
| #    include "x86_64/regs.h"
 | |
| #elif ARCH(AARCH64)
 | |
| #    include "aarch64/regs.h"
 | |
| #elif ARCH(RISCV64)
 | |
| #    include "riscv64/regs.h"
 | |
| #else
 | |
| #    error Unknown architecture
 | |
| #endif
 | 
