mirror of
				https://git.h3cjp.net/H3cJP/citra.git
				synced 2025-11-04 09:05:08 +00:00 
			
		
		
		
	shader: Add missing I2I exception when CC is used
This commit is contained in:
		
							parent
							
								
									dbd882ddeb
								
							
						
					
					
						commit
						0e1b213fa7
					
				| 
						 | 
				
			
			@ -52,10 +52,14 @@ void I2I(TranslatorVisitor& v, u64 insn, const IR::U32& src_a) {
 | 
			
		|||
        BitField<13, 1, u64> src_fmt_sign;
 | 
			
		||||
        BitField<41, 3, u64> selector;
 | 
			
		||||
        BitField<45, 1, u64> neg;
 | 
			
		||||
        BitField<47, 1, u64> cc;
 | 
			
		||||
        BitField<49, 1, u64> abs;
 | 
			
		||||
        BitField<50, 1, u64> sat;
 | 
			
		||||
    } const i2i{insn};
 | 
			
		||||
 | 
			
		||||
    if (i2i.cc != 0) {
 | 
			
		||||
        throw NotImplementedException("I2I CC");
 | 
			
		||||
    }
 | 
			
		||||
    if (i2i.sat != 0) {
 | 
			
		||||
        throw NotImplementedException("I2I SAT");
 | 
			
		||||
    }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue