mirror of
				https://github.com/simon987/Much-Assembly-Required.git
				synced 2025-10-31 08:16:52 +00:00 
			
		
		
		
	Update to address issue #101
This commit is contained in:
		
							parent
							
								
									415500faa9
								
							
						
					
					
						commit
						5a994fe437
					
				| @ -18,10 +18,11 @@ public class CubotComPort extends CpuHardware { | |||||||
| 
 | 
 | ||||||
|     private Cubot cubot; |     private Cubot cubot; | ||||||
| 
 | 
 | ||||||
|     private static final int COMPORT_SELF_CLEAR = 0; |     private static final int COMPORT_BUFFER_CLEAR = 0; | ||||||
|     private static final int COMPORT_POLL = 1; |     private static final int COMPORT_POLL = 1; | ||||||
|     private static final int COMPORT_FRONT_PORT_OUT = 2; |     private static final int COMPORT_FRONT_PORT_OUT = 2; | ||||||
|     private static final int COMPORT_SELF_OUT = 3; |     private static final int COMPORT_SELF_OUT = 3; | ||||||
|  |     private static final int COMPORT_CONSOLE_CLEAR = 4; | ||||||
| 
 | 
 | ||||||
|     public CubotComPort(Cubot cubot) { |     public CubotComPort(Cubot cubot) { | ||||||
|         this.cubot = cubot; |         this.cubot = cubot; | ||||||
| @ -34,9 +35,12 @@ public class CubotComPort extends CpuHardware { | |||||||
| 
 | 
 | ||||||
|         int a = getCpu().getRegisterSet().getRegister("A").getValue(); |         int a = getCpu().getRegisterSet().getRegister("A").getValue(); | ||||||
| 
 | 
 | ||||||
|         if (a == COMPORT_SELF_CLEAR) { |         if (a == COMPORT_BUFFER_CLEAR) { | ||||||
| 
 | 
 | ||||||
|             cubot.getConsoleMessagesBuffer().clear(); |             cubot.getConsoleMessagesBuffer().clear(); | ||||||
|  |              | ||||||
|  |         } else if (a == COMPORT_CONSOLE_CLEAR) { | ||||||
|  |              | ||||||
|             cubot.setConsoleMode(Cubot.ConsoleMode.CLEAR); |             cubot.setConsoleMode(Cubot.ConsoleMode.CLEAR); | ||||||
|              |              | ||||||
|         } else if (a == COMPORT_POLL) { |         } else if (a == COMPORT_POLL) { | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user