diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-08-06 22:48:56 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-08-06 22:48:56 +0200 |
| commit | 8fd3b2abfc04be1deb3b737e8525caec66808fb4 (patch) | |
| tree | a9dd0dc95495c130472e4ad4f6fb865fd06fefce /kernel/shell.c | |
| parent | f0a4237f881ef3a29246cdaadaea589bb984800f (diff) | |
minor fixes of some comments and interrupts
Diffstat (limited to 'kernel/shell.c')
| -rw-r--r-- | kernel/shell.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/kernel/shell.c b/kernel/shell.c index 4507931..ad8011b 100644 --- a/kernel/shell.c +++ b/kernel/shell.c @@ -73,6 +73,13 @@ void shell_execute() scr_put_string(" "); scr_put_hex(int_unhandled); } + else if(1==strcmp(command,"EIGHT")) + { + scr_put_string_nl(" generating software interrupt 88"); + scr_put_string(" "); + int_generate88(); + + } else { scr_put_string_nl(" unsupported command, sorry!"); |
