pc87312.h (8110fa1d94f2997badc2af39231a1d279c5bb1ee) | pc87312.h (b327066931827c71feea1f7f39a7608a6072364e) |
---|---|
1/* 2 * QEMU National Semiconductor PC87312 (Super I/O) 3 * 4 * Copyright (c) 2010-2012 Herve Poussineau 5 * Copyright (c) 2011-2012 Andreas Färber 6 * 7 * Permission is hereby granted, free of charge, to any person obtaining a copy 8 * of this software and associated documentation files (the "Software"), to deal --- 15 unchanged lines hidden (view full) --- 24 */ 25#ifndef QEMU_PC87312_H 26#define QEMU_PC87312_H 27 28#include "hw/isa/superio.h" 29#include "qom/object.h" 30 31 | 1/* 2 * QEMU National Semiconductor PC87312 (Super I/O) 3 * 4 * Copyright (c) 2010-2012 Herve Poussineau 5 * Copyright (c) 2011-2012 Andreas Färber 6 * 7 * Permission is hereby granted, free of charge, to any person obtaining a copy 8 * of this software and associated documentation files (the "Software"), to deal --- 15 unchanged lines hidden (view full) --- 24 */ 25#ifndef QEMU_PC87312_H 26#define QEMU_PC87312_H 27 28#include "hw/isa/superio.h" 29#include "qom/object.h" 30 31 |
32#define TYPE_PC87312_SUPERIO "pc87312" | 32#define TYPE_PC87312 "pc87312" |
33typedef struct PC87312State PC87312State; 34DECLARE_INSTANCE_CHECKER(PC87312State, PC87312, | 33typedef struct PC87312State PC87312State; 34DECLARE_INSTANCE_CHECKER(PC87312State, PC87312, |
35 TYPE_PC87312_SUPERIO) | 35 TYPE_PC87312) |
36 37struct PC87312State { 38 /*< private >*/ 39 ISASuperIODevice parent_dev; 40 /*< public >*/ 41 42 uint16_t iobase; 43 uint8_t config; /* initial configuration */ --- 15 unchanged lines hidden --- | 36 37struct PC87312State { 38 /*< private >*/ 39 ISASuperIODevice parent_dev; 40 /*< public >*/ 41 42 uint16_t iobase; 43 uint8_t config; /* initial configuration */ --- 15 unchanged lines hidden --- |