~ubuntu-branches/ubuntu/saucy/seabios/saucy-proposed

« back to all changes in this revision

Viewing changes to src/util.c

  • Committer: Package Import Robot
  • Author(s): Michael Tokarev
  • Date: 2013-07-08 21:34:44 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20130708213444-6ed9q23j39x143lu
Tags: 1.7.3-1
Multi-Arch: allowed

Show diffs side-by-side

added added

removed removed

Lines of Context:
260
260
{
261
261
    struct bregs br;
262
262
    memset(&br, 0, sizeof(br));
263
 
    br.flags = F_IF;
 
263
    br.flags = F_IF|F_ZF;
264
264
    br.ah = 1;
265
265
    call16_int(0x16, &br);
266
266
    return !(br.flags & F_ZF);