Skip to content
This repository has been archived by the owner on Sep 19, 2022. It is now read-only.

Commit

Permalink
Merge pull request #31 from specialfish9/phase3/yonas
Browse files Browse the repository at this point in the history
correzione problema return in readfromterm
  • Loading branch information
specialfish9 authored Jul 16, 2022
2 parents 33cb435 + 45f7d7d commit 6ccc3e4
Showing 1 changed file with 12 additions and 16 deletions.
28 changes: 12 additions & 16 deletions src/sys_support.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,22 +129,18 @@ inline int read_from_terminal(unsigned int virtAddr, unsigned int asid){ //
unsigned int charnstatus;
unsigned int status;
int i=0;
if(virtAddr>KUSEG){
do{
//Il return della SYSCALL ha nel primo byte lo status, e nel secondo il carattere ricevuto
charnstatus= SYSCALL(DOIO, (unsigned int)&dev_reg->recv_command,TRANSMITCHAR,0) ;
status= charnstatus & (0xFF); //maschero il return value per leggere lo status
if(status!=OKCHARTRANS)
return -status;
*((char*)virtAddr++) = charnstatus>>8; //shifto di 8 bit per trattenere soltanto il carattere letto
i++;
}while(charnstatus>>8!='\0'); //Da verificare se vogliamo prendere in input anche \0 oppure solo i caratteri effettivi (per ora per sicurezza lo faccio)
return i;
}else{
SYSCALL(TERMINATE,0,0,0);
}

return 42; // FIXME
if(virtAddr<KUSEG)
return SYSCALL(TERMINATE,0,0,0);
do{
//Il return della SYSCALL ha nel primo byte lo status, e nel secondo il carattere ricevuto
charnstatus= SYSCALL(DOIO, (unsigned int)&dev_reg->recv_command,TRANSMITCHAR,0) ;
status= charnstatus & (0xFF); //maschero il return value per leggere lo status
if(status!=OKCHARTRANS)
return -status;
*((char*)virtAddr++) = charnstatus>>8; //shifto di 8 bit per trattenere soltanto il carattere letto
i++;
}while(charnstatus>>8!='\0'); //Da verificare se vogliamo prendere in input anche \0 oppure solo i caratteri effettivi (per ora per sicurezza lo faccio)
return i;
}


Expand Down

0 comments on commit 6ccc3e4

Please sign in to comment.