1: //======================================================================================== 2: // GraphicScreen.java 3: // en:Graphic screen 4: // ja:グラフィック画面 5: // Copyright (C) 2003-2025 Makoto Kamada 6: // 7: // This file is part of the XEiJ (X68000 Emulator in Java). 8: // You can use, modify and redistribute the XEiJ if the conditions are met. 9: // Read the XEiJ License for more details. 10: // https://stdkmd.net/xeij/ 11: //======================================================================================== 12: 13: package xeij; 14: 15: public class GraphicScreen { 16: 17: //GVRAM 18: public static final byte[] graM4 = new byte[0x400000 + 0x40000]; //GVRAM+ダミー4bitページ 19: 20: } //class GraphicScreen