~ubuntu-branches/ubuntu/raring/simh/raring

« back to all changes in this revision

Viewing changes to GRI/gri_stddev.c

  • Committer: Bazaar Package Importer
  • Author(s): Vince Mulhollon
  • Date: 2007-04-13 20:16:15 UTC
  • mfrom: (1.1.7 upstream) (2.1.3 lenny)
  • Revision ID: james.westby@ubuntu.com-20070413201615-jiar46bgkrs0dw2h
Tags: 3.7.0-1
* New upstream released 03-Feb-2007
* i7094 added which emulates the IBM 7090/7094
* Upstream has converted almost entirely to pdf format for docs
* All manpages updated
* All docs are registered with the doc-base system

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* gri_stddev.c: GRI-909 standard devices
2
2
 
3
 
   Copyright (c) 2001-2005, Robert M Supnik
 
3
   Copyright (c) 2001-2006, Robert M Supnik
4
4
 
5
5
   Permission is hereby granted, free of charge, to any person obtaining a
6
6
   copy of this software and associated documentation files (the "Software"),
29
29
   hsp          S42-006 high speed punch
30
30
   rtc          real time clock
31
31
 
 
32
   30-Sep-06    RMS     Fixed handling of non-printable characters in KSR mode
32
33
   22-Nov-05    RMS     Revised for new terminal processing routines
33
34
   29-Dec-03    RMS     Added support for console backpressure
34
35
   25-Apr-03    RMS     Revised for extended file support
254
255
int32 c;
255
256
t_stat r;
256
257
 
257
 
c = sim_tt_outcvt (uptr->buf, TT_GET_MODE (uptr->flags));
 
258
c = sim_tt_outcvt (uptr->buf, TT_GET_MODE (uptr->flags) | TTUF_KSR);
258
259
if (c >= 0) {
259
260
    if ((r = sim_putchar_s (c)) != SCPE_OK) {           /* output; error? */
260
261
        sim_activate (uptr, uptr->wait);                /* try again */