mirror of
				https://github.com/coop-deluxe/sm64coopdx.git
				synced 2025-10-30 08:01:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			200 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			200 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| # Assembly Macros
 | |
| 
 | |
| .set K0BASE, 0x80000000
 | |
| .set K1BASE, 0xA0000000
 | |
| .set K2BASE, 0xC0000000
 | |
| 
 | |
| .macro glabel label
 | |
|     .global \label
 | |
|     .balign 4
 | |
|     \label:
 | |
| .endm
 | |
| 
 | |
| .macro .word32 x
 | |
|     .word \x
 | |
| .endm
 | 
