mirror of
				https://github.com/Ryujinx/Ryujinx.git
				synced 2025-10-24 18:20:31 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			438 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			438 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using ARMeilleure.Instructions;
 | |
| 
 | |
| namespace ARMeilleure.Decoders
 | |
| {
 | |
|     struct InstDescriptor
 | |
|     {
 | |
|         public static InstDescriptor Undefined => new InstDescriptor(InstName.Und, InstEmit.Und);
 | |
| 
 | |
|         public InstName    Name    { get; }
 | |
|         public InstEmitter Emitter { get; }
 | |
| 
 | |
|         public InstDescriptor(InstName name, InstEmitter emitter)
 | |
|         {
 | |
|             Name    = name;
 | |
|             Emitter = emitter;
 | |
|         }
 | |
|     }
 | |
| } |