hdlcd.hh (11168:f98eb2da15a4) | hdlcd.hh (11294:a368064a2ab5) |
---|---|
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 --- 302 unchanged lines hidden (view full) --- 311 * @see setInterrupts 312 * @param ints Set of interrupts to clear 313 */ 314 void intClear(uint32_t ints) { 315 setInterrupts(int_rawstat & ~ints, int_mask); 316 } 317 318 /** Masked interrupt status register */ | 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 --- 302 unchanged lines hidden (view full) --- 311 * @see setInterrupts 312 * @param ints Set of interrupts to clear 313 */ 314 void intClear(uint32_t ints) { 315 setInterrupts(int_rawstat & ~ints, int_mask); 316 } 317 318 /** Masked interrupt status register */ |
319 const uint32_t intStatus() const { return int_rawstat & int_mask; } | 319 uint32_t intStatus() const { return int_rawstat & int_mask; } |
320 321 protected: // Pixel output 322 class PixelPump : public BasePixelPump 323 { 324 public: 325 PixelPump(HDLcd &p, ClockDomain &pxl_clk, unsigned pixel_chunk) 326 : BasePixelPump(p, pxl_clk, pixel_chunk), parent(p) {} 327 --- 66 unchanged lines hidden --- | 320 321 protected: // Pixel output 322 class PixelPump : public BasePixelPump 323 { 324 public: 325 PixelPump(HDLcd &p, ClockDomain &pxl_clk, unsigned pixel_chunk) 326 : BasePixelPump(p, pxl_clk, pixel_chunk), parent(p) {} 327 --- 66 unchanged lines hidden --- |