All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.pawelkrol.Afterimage.Format.Config.ArtStudio.scala Maven / Gradle / Ivy

The newest version!
package com.github.pawelkrol.Afterimage
package Format.Config

/** Memory configuration of Art Studio file format.
  *
  * @constructor create a new `ArtStudio` memory configuration
  */
case class ArtStudio() extends HiRes {

  /** Memory offset of the bitmap data bytes. */
  val bitmap = ArtStudio.bitmap

  /** Memory offset of the screen data bytes. */
  val screen = ArtStudio.screen
}

/** Parameter values for [[com.github.pawelkrol.Afterimage.Format.Config.ArtStudio]] memory configuration. */
object ArtStudio {

  /** Memory offset of Art Studio bitmap data bytes. */
  val bitmap = 0x0000

  /** Memory offset of Art Studio screen data bytes. */
  val screen = 0x1f40
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy