digic-timer.c (8ef94f0bc9167f246b41cb1188bf80dcd84b49fe) | digic-timer.c (03dd024ff57733a55cd2e455f361d053c81b1b29) |
---|---|
1/* 2 * QEMU model of the Canon DIGIC timer block. 3 * 4 * Copyright (C) 2013 Antony Pavlov <antonynpavlov@gmail.com> 5 * 6 * This model is based on reverse engineering efforts 7 * made by CHDK (http://chdk.wikia.com) and 8 * Magic Lantern (http://www.magiclantern.fm) projects --- 16 unchanged lines hidden (view full) --- 25 * GNU General Public License for more details. 26 * 27 */ 28 29#include "qemu/osdep.h" 30#include "hw/sysbus.h" 31#include "hw/ptimer.h" 32#include "qemu/main-loop.h" | 1/* 2 * QEMU model of the Canon DIGIC timer block. 3 * 4 * Copyright (C) 2013 Antony Pavlov <antonynpavlov@gmail.com> 5 * 6 * This model is based on reverse engineering efforts 7 * made by CHDK (http://chdk.wikia.com) and 8 * Magic Lantern (http://www.magiclantern.fm) projects --- 16 unchanged lines hidden (view full) --- 25 * GNU General Public License for more details. 26 * 27 */ 28 29#include "qemu/osdep.h" 30#include "hw/sysbus.h" 31#include "hw/ptimer.h" 32#include "qemu/main-loop.h" |
33#include "qemu/log.h" |
|
33 34#include "hw/timer/digic-timer.h" 35 36static const VMStateDescription vmstate_digic_timer = { 37 .name = "digic.timer", 38 .version_id = 1, 39 .minimum_version_id = 1, 40 .fields = (VMStateField[]) { --- 123 unchanged lines hidden --- | 34 35#include "hw/timer/digic-timer.h" 36 37static const VMStateDescription vmstate_digic_timer = { 38 .name = "digic.timer", 39 .version_id = 1, 40 .minimum_version_id = 1, 41 .fields = (VMStateField[]) { --- 123 unchanged lines hidden --- |