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

spinal.lib.graphic.vga.Vga.scala Maven / Gradle / Ivy

package spinal.lib.graphic.vga

import spinal.core._
import spinal.lib._
import spinal.lib.graphic.{RgbConfig, Rgb}


case class Vga (rgbConfig: RgbConfig, withColorEn : Boolean = true) extends VgaBus(Rgb(rgbConfig), withColorEn){
  def <<(m : Vga): Unit ={
    this.vSync := m.vSync
    this.hSync := m.hSync
    this.colorEn := m.colorEn

    def adjust(from : UInt, width : Int) = width-widthOf(from) match {
      case 0 => from
      case v if v > 0 => from << v
      case v if v < 0 => from >> v
    }
    this.color.r := adjust(m.color.r, widthOf(this.color.r))
    this.color.g := adjust(m.color.g, widthOf(this.color.g))
    this.color.b := adjust(m.color.b, widthOf(this.color.b))
  }
}


class VgaBus[T <: Data](colorType : HardType[T], withColorEn : Boolean = true) extends Bundle with IMasterSlave{
  val vSync = Bool()
  val hSync = Bool()

  val colorEn = withColorEn generate Bool()
  val color = colorType()

  override def asMaster() = this.asOutput()
  override def asSlave() = this.asInput()

  override def clone = new VgaBus(colorType, withColorEn)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy