Last change
on this file since 6dd74a9 was 0580615, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
Point of no return.
|
-
Property mode
set to
100644
|
File size:
812 bytes
|
Rev | Line | |
---|
[f40a309] | 1 | /*
|
---|
| 2 | ============================================================================
|
---|
| 3 | conwr.c -- write on the console
|
---|
| 4 | Version 4 -- 1987-06-29 -- D.N. Lynx Crowe
|
---|
| 5 | ============================================================================
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #define _FS_DEF_ /* to avoid unnecessary externals */
|
---|
| 9 |
|
---|
| 10 | #include "biosdefs.h"
|
---|
| 11 | #include "io.h"
|
---|
| 12 | #include "errno.h"
|
---|
| 13 | #include "stddefs.h"
|
---|
| 14 |
|
---|
| 15 | /*
|
---|
| 16 | ============================================================================
|
---|
| 17 | _conwr(kind, buff, len) -- write 'len' bytes from 'buff' on the console
|
---|
| 18 | using op 'kind' as the BIOS argument.
|
---|
| 19 | ============================================================================
|
---|
| 20 | */
|
---|
[0580615] | 21 | int _conwr(int kind, char *buff, int len)
|
---|
[f40a309] | 22 | {
|
---|
| 23 | register int count;
|
---|
| 24 |
|
---|
| 25 | for (count = 0; count < len; ++count)
|
---|
| 26 | BIOS(B_PUTC, kind, *buff++);
|
---|
| 27 |
|
---|
| 28 | return(count);
|
---|
| 29 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.