diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-12-01 00:03:04 +0100 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-12-01 00:03:04 +0100 |
| commit | 0ec5b4d78c0fa1e256577f22e4265fd8a9e12197 (patch) | |
| tree | bf4b934adcbdd8ef21a194e845f629a5fbfdab60 /video/console.c | |
| parent | b875bc86aac2c9a733ddb9b3db4ead94d2c4c053 (diff) | |
Paging between 2 'tasks' loaded from ELF files.
Both files are loaded at: 0x08048000 virutal!
Diffstat (limited to 'video/console.c')
| -rw-r--r-- | video/console.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/video/console.c b/video/console.c index 4a04cf1..6eeaf0b 100644 --- a/video/console.c +++ b/video/console.c @@ -111,7 +111,7 @@ void scr_nextline() void scr_put_char(char ch,char col) { - lock_spin(6); + // lock_spin(6); if(ch=='\n')scr_nextline(); else if(posx<SCR_WIDTH) @@ -124,8 +124,7 @@ void scr_put_char(char ch,char col) if(posx>=SCR_WIDTH)scr_nextline(); #endif - lock_release(6); - + //lock_release(6); } /* |
