hdlcd.cc (11091:62e1504b9c64) hdlcd.cc (11359:b0b976a1ceda)
1/*
2 * Copyright (c) 2010-2013, 2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 530 unchanged lines hidden (view full) ---

539 if (enableCapture) {
540 if (!pic) {
541 pic = simout.create(
542 csprintf("%s.framebuffer.bmp", sys->name()),
543 true);
544 }
545
546 assert(pic);
1/*
2 * Copyright (c) 2010-2013, 2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 530 unchanged lines hidden (view full) ---

539 if (enableCapture) {
540 if (!pic) {
541 pic = simout.create(
542 csprintf("%s.framebuffer.bmp", sys->name()),
543 true);
544 }
545
546 assert(pic);
547 pic->seekp(0);
548 bmp.write(*pic);
547 pic->stream()->seekp(0);
548 bmp.write(*pic->stream());
549 }
550}
551
552void
553HDLcd::setInterrupts(uint32_t ints, uint32_t mask)
554{
555 const bool old_ints(intStatus());
556

--- 108 unchanged lines hidden ---
549 }
550}
551
552void
553HDLcd::setInterrupts(uint32_t ints, uint32_t mask)
554{
555 const bool old_ints(intStatus());
556

--- 108 unchanged lines hidden ---