/****************************************************************************** // Canary Islands Computer Museum Website // ---------------------------------------------------------------------------- // // Filename : Computer.cs // Author(s) : Natalia Portillo // // --[ Description ] ---------------------------------------------------------- // // High level representation of a computer. // // --[ License ] -------------------------------------------------------------- // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // ---------------------------------------------------------------------------- // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ namespace Cicm.Database.Schemas { /// Computer public class Computer { /// Bits of GPRs of primary CPU public int bits; /// Capacity of first removable disk format public string cap1; /// Capacity of second removable disk format public string cap2; /// Maximum colors on screen public int colors; /// Free-form comments public string comment; /// Manufacturer's company ID public int company; /// Primary CPU public int cpu1; /// Secondary CPU public int cpu2; /// ID of first removable disk format public int disk1; /// ID of second removable disk format public int disk2; /// ID of GPU public int gpu; /// ID of first hard disk format public int hdd1; /// ID of second hard disk format public int hdd2; /// ID of third hard disk format public int hdd3; /// ID public int id; /// Frequency in MHz of primary CPU public float mhz1; /// Frequency in MHz of secondary CPU public float mhz2; /// Model name public string model; /// ID of MPU public int mpu; /// Audio channels supported by the MPU public int music_channels; /// Size in kibibytes of program RAM public int ram; /// Resolution in WxH pixels public string res; /// Size in kibibytes of firmware public int rom; /// Audio channels supported by the DSP public int sound_channels; /// ID of DSP public int spu; /// Size in kibibytes for video RAM public int vram; /// Introduction date, 0 if unknown public int year; } }