├── .gitignore ├── Actuators ├── Actuators.md ├── DualHBridgePmod.jpg ├── EncoderMotors.jpg └── Servos.jpg ├── Analog2Digital ├── 12bitADC.jpg ├── 8bitADDA.jpg └── Analog2Digital.md ├── Audio ├── Audio.md ├── I2SAudio.jpg ├── Microphone.jpg ├── PWMAudio.jpg └── pmodamp2.jpg ├── BlackSoC └── BlackSoC.md ├── Debugging ├── Debugging.jpg └── Debugging.md ├── Directives └── Directives.md ├── GettingStarted └── GettingStarted.md ├── Input_Devices ├── DIPSwitches.jpg ├── Gamepad.jpg ├── Input_Devices.md ├── Keyboard.jpg └── Keypad.jpg ├── Introduction └── Introduction.md ├── LogicAnalysers ├── BlackiceMxAnalyser.jpg ├── DecodingSPI_Protocol.jpg ├── Ice40LogicSnifferConnections.jpg ├── LogicAnalysers.md ├── LogicSnifferGUI.jpg └── pulseviewi2c.png ├── MakingPmods ├── DisplayPmod.jpg ├── MakingPmods.md └── UltrasonicPmod.jpg ├── Memory_Access └── Memory_Access.md ├── Output_Devices ├── 7Segment.jpeg ├── 7segmix.jpg ├── 8DigitSPIDevice.jpg ├── I2CDisplay.jpg ├── I2CDisplay2.jpg ├── LEDs.jpg ├── NeoPixels.jpg ├── Output_Devices.md ├── ParallelConnectedTextLCD.jpg ├── RGBLEDs.jpg ├── SPIOLEDDisplay.jpg ├── SerialConnectedTextLCD.jpg ├── TowersOfHanoi.jpg ├── TowersOfHanoiPCBs.jpg ├── VGAOutput.jpg ├── VGAText.jpg ├── pmod7seg.jpg └── shiftout.jpg ├── PicoSoC └── PicoSoC.md ├── Programming_the_Built-in_Hardware ├── LEDs.jpg ├── PWM.jpg └── Programming_the_Built-in_Hardware.md ├── README.md ├── Resources └── Resources.md ├── RetroComputing ├── AcornAtom.jpg ├── AppleOne.jpg ├── BBC_Micro.jpg ├── RetroComputing.md └── Z80_CP_M.jpg ├── STM32Programming └── STM32Programming.md ├── SaxonSoc └── SaxonSoc.md ├── Sensors ├── ACL2Sensor.jpg ├── AnalogueSensor.jpg ├── AssortedDigitalSensors.jpg ├── BME280.jpg ├── DS1307RTC.jpg ├── PingSensor.jpg ├── RotarySensor.jpg ├── Sensors.md ├── TimeOfFlightSensor.jpg └── TimeOfFlightSensorInUse.jpg ├── Simulation ├── Simulation.md └── txuart.png ├── Soft_Processors ├── LedPanel.jpg ├── ManchesterBaby.jpg └── Soft_Processors.md ├── SpinalHDL └── SpinalHDL.md ├── StorageDevices └── StorageDevices.md ├── The_Hardware ├── BlackIceMx-schematic.png ├── IceCore-schematic.png ├── Pmods.jpg ├── The_Hardware.md └── pinout.png ├── _config.yml └── examples ├── actuators ├── blackicemx.mk └── servo │ ├── Makefile │ ├── debouncer.v │ ├── servo.v │ ├── servo_tester.pcf │ └── servo_tester.v ├── arachne.mk ├── audio ├── audiostream │ ├── BaudTickGen.v │ ├── Makefile │ ├── PWM.v │ ├── async_receiver.v │ ├── play │ ├── sample.mp3 │ └── stream.pcf ├── blackicemx.mk ├── music │ ├── Makefile │ ├── music.pcf │ └── music.v ├── music2 │ ├── Makefile │ ├── music.pcf │ └── music.v ├── music2a │ ├── Makefile │ ├── music.pcf │ └── music.v ├── music4 │ ├── Makefile │ ├── music.pcf │ └── music.v └── pmodamp2 │ ├── Makefile │ ├── music.pcf │ └── music.v ├── baby ├── Makefile ├── baby.pcf ├── baby.v ├── disassemble.py ├── lines.a └── lines.hex ├── blackicemx.mk ├── builtin ├── LEDglow │ ├── LEDglow.pcf │ ├── LEDglow.v │ └── Makefile ├── blackicemx.mk ├── bounce │ ├── Makefile │ ├── bounce.pcf │ └── bounce.v ├── button_test │ ├── Makefile │ ├── button_test.pcf │ └── button_test.v ├── debounce │ ├── Makefile │ ├── PushButton_Debouncer.v │ ├── debounce.pcf │ └── debounce.v ├── led │ ├── Makefile │ ├── led.pcf │ └── led.v ├── led1 │ ├── Makefile │ ├── led.pcf │ └── led.v ├── led2 │ ├── Makefile │ ├── led.pcf │ └── led.v ├── led3 │ ├── Makefile │ ├── led.pcf │ └── led.v └── leds │ ├── Makefile │ ├── leds.pcf │ └── leds.v ├── camera ├── Makefile ├── camera.pcf ├── camera.v └── camera_read.v ├── input ├── blackicemx.mk ├── keypad │ ├── Makefile │ ├── keypad_test.pcf │ └── keypad_test.v ├── ps2 │ ├── Makefile │ ├── byte_to_hex.v │ ├── debug.v │ ├── ps2.v │ ├── ps2_test.pcf │ ├── ps2_test.v │ └── uart_tx.v └── switches8 │ ├── Makefile │ ├── switches.pcf │ └── switches.v ├── ledbaby ├── Makefile ├── baby.pcf ├── baby.v ├── ledpanel.v └── lines.hex ├── output ├── 7seg │ ├── 7seg.v │ ├── 7seg_display.pcf │ ├── 7seg_display.v │ ├── Makefile │ └── hex27seg.v ├── blackicemx.mk ├── leds │ ├── Makefile │ ├── leds.pcf │ └── leds.v ├── rgbled │ ├── Makefile │ ├── rgbled.pcf │ └── rgbled.v ├── shiftout │ ├── Makefile │ ├── shiftout.pcf │ └── shiftout.v ├── textlcd │ ├── BaudTickGen.v │ ├── LCDmodule.v │ ├── Makefile │ ├── async_receiver.v │ ├── lcd_test.pcf │ └── start.sh └── ws2812b │ ├── Makefile │ ├── ws2811.v │ ├── wstest.pcf │ └── wstest.v ├── pong ├── Makefile ├── hvsync_generator.v ├── pong.pcf └── pong.v ├── sensors ├── blackicemx.mk ├── ping │ ├── 7seg_display.v │ ├── Makefile │ ├── hex27seg.v │ ├── ping.v │ ├── ping_test.pcf │ └── ping_test.v └── quad │ ├── 7seg_display.v │ ├── Makefile │ ├── hex27seg.v │ ├── quad_test.pcf │ └── quad_test.v ├── sim ├── tb ├── tb.v ├── txuart.v └── waves.vcd ├── verilator ├── Makefile ├── thruwire.cpp ├── thruwire.pcf └── thruwire.v └── vgabuff ├── Makefile ├── camera_read.v ├── hvsync_generator.v ├── vgabuff.pcf ├── vgabuff.v └── vgatest.v /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj_dir/ 3 | tb 4 | 5 | 6 | -------------------------------------------------------------------------------- /Actuators/Actuators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Actuators/Actuators.md -------------------------------------------------------------------------------- /Actuators/DualHBridgePmod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Actuators/DualHBridgePmod.jpg -------------------------------------------------------------------------------- /Actuators/EncoderMotors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Actuators/EncoderMotors.jpg -------------------------------------------------------------------------------- /Actuators/Servos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Actuators/Servos.jpg -------------------------------------------------------------------------------- /Analog2Digital/12bitADC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Analog2Digital/12bitADC.jpg -------------------------------------------------------------------------------- /Analog2Digital/8bitADDA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Analog2Digital/8bitADDA.jpg -------------------------------------------------------------------------------- /Analog2Digital/Analog2Digital.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Analog2Digital/Analog2Digital.md -------------------------------------------------------------------------------- /Audio/Audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Audio/Audio.md -------------------------------------------------------------------------------- /Audio/I2SAudio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Audio/I2SAudio.jpg -------------------------------------------------------------------------------- /Audio/Microphone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Audio/Microphone.jpg -------------------------------------------------------------------------------- /Audio/PWMAudio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Audio/PWMAudio.jpg -------------------------------------------------------------------------------- /Audio/pmodamp2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Audio/pmodamp2.jpg -------------------------------------------------------------------------------- /BlackSoC/BlackSoC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/BlackSoC/BlackSoC.md -------------------------------------------------------------------------------- /Debugging/Debugging.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Debugging/Debugging.jpg -------------------------------------------------------------------------------- /Debugging/Debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Debugging/Debugging.md -------------------------------------------------------------------------------- /Directives/Directives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Directives/Directives.md -------------------------------------------------------------------------------- /GettingStarted/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/GettingStarted/GettingStarted.md -------------------------------------------------------------------------------- /Input_Devices/DIPSwitches.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Input_Devices/DIPSwitches.jpg -------------------------------------------------------------------------------- /Input_Devices/Gamepad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Input_Devices/Gamepad.jpg -------------------------------------------------------------------------------- /Input_Devices/Input_Devices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Input_Devices/Input_Devices.md -------------------------------------------------------------------------------- /Input_Devices/Keyboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Input_Devices/Keyboard.jpg -------------------------------------------------------------------------------- /Input_Devices/Keypad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Input_Devices/Keypad.jpg -------------------------------------------------------------------------------- /Introduction/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Introduction/Introduction.md -------------------------------------------------------------------------------- /LogicAnalysers/BlackiceMxAnalyser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/LogicAnalysers/BlackiceMxAnalyser.jpg -------------------------------------------------------------------------------- /LogicAnalysers/DecodingSPI_Protocol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/LogicAnalysers/DecodingSPI_Protocol.jpg -------------------------------------------------------------------------------- /LogicAnalysers/Ice40LogicSnifferConnections.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/LogicAnalysers/Ice40LogicSnifferConnections.jpg -------------------------------------------------------------------------------- /LogicAnalysers/LogicAnalysers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/LogicAnalysers/LogicAnalysers.md -------------------------------------------------------------------------------- /LogicAnalysers/LogicSnifferGUI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/LogicAnalysers/LogicSnifferGUI.jpg -------------------------------------------------------------------------------- /LogicAnalysers/pulseviewi2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/LogicAnalysers/pulseviewi2c.png -------------------------------------------------------------------------------- /MakingPmods/DisplayPmod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/MakingPmods/DisplayPmod.jpg -------------------------------------------------------------------------------- /MakingPmods/MakingPmods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/MakingPmods/MakingPmods.md -------------------------------------------------------------------------------- /MakingPmods/UltrasonicPmod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/MakingPmods/UltrasonicPmod.jpg -------------------------------------------------------------------------------- /Memory_Access/Memory_Access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Memory_Access/Memory_Access.md -------------------------------------------------------------------------------- /Output_Devices/7Segment.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/7Segment.jpeg -------------------------------------------------------------------------------- /Output_Devices/7segmix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/7segmix.jpg -------------------------------------------------------------------------------- /Output_Devices/8DigitSPIDevice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/8DigitSPIDevice.jpg -------------------------------------------------------------------------------- /Output_Devices/I2CDisplay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/I2CDisplay.jpg -------------------------------------------------------------------------------- /Output_Devices/I2CDisplay2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/I2CDisplay2.jpg -------------------------------------------------------------------------------- /Output_Devices/LEDs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/LEDs.jpg -------------------------------------------------------------------------------- /Output_Devices/NeoPixels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/NeoPixels.jpg -------------------------------------------------------------------------------- /Output_Devices/Output_Devices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/Output_Devices.md -------------------------------------------------------------------------------- /Output_Devices/ParallelConnectedTextLCD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/ParallelConnectedTextLCD.jpg -------------------------------------------------------------------------------- /Output_Devices/RGBLEDs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/RGBLEDs.jpg -------------------------------------------------------------------------------- /Output_Devices/SPIOLEDDisplay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/SPIOLEDDisplay.jpg -------------------------------------------------------------------------------- /Output_Devices/SerialConnectedTextLCD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/SerialConnectedTextLCD.jpg -------------------------------------------------------------------------------- /Output_Devices/TowersOfHanoi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/TowersOfHanoi.jpg -------------------------------------------------------------------------------- /Output_Devices/TowersOfHanoiPCBs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/TowersOfHanoiPCBs.jpg -------------------------------------------------------------------------------- /Output_Devices/VGAOutput.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/VGAOutput.jpg -------------------------------------------------------------------------------- /Output_Devices/VGAText.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/VGAText.jpg -------------------------------------------------------------------------------- /Output_Devices/pmod7seg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/pmod7seg.jpg -------------------------------------------------------------------------------- /Output_Devices/shiftout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Output_Devices/shiftout.jpg -------------------------------------------------------------------------------- /PicoSoC/PicoSoC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/PicoSoC/PicoSoC.md -------------------------------------------------------------------------------- /Programming_the_Built-in_Hardware/LEDs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Programming_the_Built-in_Hardware/LEDs.jpg -------------------------------------------------------------------------------- /Programming_the_Built-in_Hardware/PWM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Programming_the_Built-in_Hardware/PWM.jpg -------------------------------------------------------------------------------- /Programming_the_Built-in_Hardware/Programming_the_Built-in_Hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Programming_the_Built-in_Hardware/Programming_the_Built-in_Hardware.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Resources/Resources.md -------------------------------------------------------------------------------- /RetroComputing/AcornAtom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/RetroComputing/AcornAtom.jpg -------------------------------------------------------------------------------- /RetroComputing/AppleOne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/RetroComputing/AppleOne.jpg -------------------------------------------------------------------------------- /RetroComputing/BBC_Micro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/RetroComputing/BBC_Micro.jpg -------------------------------------------------------------------------------- /RetroComputing/RetroComputing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/RetroComputing/RetroComputing.md -------------------------------------------------------------------------------- /RetroComputing/Z80_CP_M.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/RetroComputing/Z80_CP_M.jpg -------------------------------------------------------------------------------- /STM32Programming/STM32Programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/STM32Programming/STM32Programming.md -------------------------------------------------------------------------------- /SaxonSoc/SaxonSoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/SaxonSoc/SaxonSoc.md -------------------------------------------------------------------------------- /Sensors/ACL2Sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Sensors/ACL2Sensor.jpg -------------------------------------------------------------------------------- /Sensors/AnalogueSensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Sensors/AnalogueSensor.jpg -------------------------------------------------------------------------------- /Sensors/AssortedDigitalSensors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Sensors/AssortedDigitalSensors.jpg -------------------------------------------------------------------------------- /Sensors/BME280.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Sensors/BME280.jpg -------------------------------------------------------------------------------- /Sensors/DS1307RTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Sensors/DS1307RTC.jpg -------------------------------------------------------------------------------- /Sensors/PingSensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Sensors/PingSensor.jpg -------------------------------------------------------------------------------- /Sensors/RotarySensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Sensors/RotarySensor.jpg -------------------------------------------------------------------------------- /Sensors/Sensors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Sensors/Sensors.md -------------------------------------------------------------------------------- /Sensors/TimeOfFlightSensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Sensors/TimeOfFlightSensor.jpg -------------------------------------------------------------------------------- /Sensors/TimeOfFlightSensorInUse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Sensors/TimeOfFlightSensorInUse.jpg -------------------------------------------------------------------------------- /Simulation/Simulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Simulation/Simulation.md -------------------------------------------------------------------------------- /Simulation/txuart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Simulation/txuart.png -------------------------------------------------------------------------------- /Soft_Processors/LedPanel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Soft_Processors/LedPanel.jpg -------------------------------------------------------------------------------- /Soft_Processors/ManchesterBaby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Soft_Processors/ManchesterBaby.jpg -------------------------------------------------------------------------------- /Soft_Processors/Soft_Processors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/Soft_Processors/Soft_Processors.md -------------------------------------------------------------------------------- /SpinalHDL/SpinalHDL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/SpinalHDL/SpinalHDL.md -------------------------------------------------------------------------------- /StorageDevices/StorageDevices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/StorageDevices/StorageDevices.md -------------------------------------------------------------------------------- /The_Hardware/BlackIceMx-schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/The_Hardware/BlackIceMx-schematic.png -------------------------------------------------------------------------------- /The_Hardware/IceCore-schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/The_Hardware/IceCore-schematic.png -------------------------------------------------------------------------------- /The_Hardware/Pmods.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/The_Hardware/Pmods.jpg -------------------------------------------------------------------------------- /The_Hardware/The_Hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/The_Hardware/The_Hardware.md -------------------------------------------------------------------------------- /The_Hardware/pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/The_Hardware/pinout.png -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/_config.yml -------------------------------------------------------------------------------- /examples/actuators/blackicemx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/actuators/blackicemx.mk -------------------------------------------------------------------------------- /examples/actuators/servo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/actuators/servo/Makefile -------------------------------------------------------------------------------- /examples/actuators/servo/debouncer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/actuators/servo/debouncer.v -------------------------------------------------------------------------------- /examples/actuators/servo/servo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/actuators/servo/servo.v -------------------------------------------------------------------------------- /examples/actuators/servo/servo_tester.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/actuators/servo/servo_tester.pcf -------------------------------------------------------------------------------- /examples/actuators/servo/servo_tester.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/actuators/servo/servo_tester.v -------------------------------------------------------------------------------- /examples/arachne.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/arachne.mk -------------------------------------------------------------------------------- /examples/audio/audiostream/BaudTickGen.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/audiostream/BaudTickGen.v -------------------------------------------------------------------------------- /examples/audio/audiostream/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/audiostream/Makefile -------------------------------------------------------------------------------- /examples/audio/audiostream/PWM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/audiostream/PWM.v -------------------------------------------------------------------------------- /examples/audio/audiostream/async_receiver.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/audiostream/async_receiver.v -------------------------------------------------------------------------------- /examples/audio/audiostream/play: -------------------------------------------------------------------------------- 1 | mpg123 -m -s -4 --8bit sample.mp3 >/dev/ttyACM0 2 | -------------------------------------------------------------------------------- /examples/audio/audiostream/sample.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/audiostream/sample.mp3 -------------------------------------------------------------------------------- /examples/audio/audiostream/stream.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/audiostream/stream.pcf -------------------------------------------------------------------------------- /examples/audio/blackicemx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/blackicemx.mk -------------------------------------------------------------------------------- /examples/audio/music/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/music/Makefile -------------------------------------------------------------------------------- /examples/audio/music/music.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/music/music.pcf -------------------------------------------------------------------------------- /examples/audio/music/music.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/music/music.v -------------------------------------------------------------------------------- /examples/audio/music2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/music2/Makefile -------------------------------------------------------------------------------- /examples/audio/music2/music.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/music2/music.pcf -------------------------------------------------------------------------------- /examples/audio/music2/music.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/music2/music.v -------------------------------------------------------------------------------- /examples/audio/music2a/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/music2a/Makefile -------------------------------------------------------------------------------- /examples/audio/music2a/music.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/music2a/music.pcf -------------------------------------------------------------------------------- /examples/audio/music2a/music.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/music2a/music.v -------------------------------------------------------------------------------- /examples/audio/music4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/music4/Makefile -------------------------------------------------------------------------------- /examples/audio/music4/music.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/music4/music.pcf -------------------------------------------------------------------------------- /examples/audio/music4/music.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/music4/music.v -------------------------------------------------------------------------------- /examples/audio/pmodamp2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/pmodamp2/Makefile -------------------------------------------------------------------------------- /examples/audio/pmodamp2/music.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/pmodamp2/music.pcf -------------------------------------------------------------------------------- /examples/audio/pmodamp2/music.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/audio/pmodamp2/music.v -------------------------------------------------------------------------------- /examples/baby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/baby/Makefile -------------------------------------------------------------------------------- /examples/baby/baby.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/baby/baby.pcf -------------------------------------------------------------------------------- /examples/baby/baby.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/baby/baby.v -------------------------------------------------------------------------------- /examples/baby/disassemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/baby/disassemble.py -------------------------------------------------------------------------------- /examples/baby/lines.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/baby/lines.a -------------------------------------------------------------------------------- /examples/baby/lines.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/baby/lines.hex -------------------------------------------------------------------------------- /examples/blackicemx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/blackicemx.mk -------------------------------------------------------------------------------- /examples/builtin/LEDglow/LEDglow.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/LEDglow/LEDglow.pcf -------------------------------------------------------------------------------- /examples/builtin/LEDglow/LEDglow.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/LEDglow/LEDglow.v -------------------------------------------------------------------------------- /examples/builtin/LEDglow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/LEDglow/Makefile -------------------------------------------------------------------------------- /examples/builtin/blackicemx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/blackicemx.mk -------------------------------------------------------------------------------- /examples/builtin/bounce/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/bounce/Makefile -------------------------------------------------------------------------------- /examples/builtin/bounce/bounce.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/bounce/bounce.pcf -------------------------------------------------------------------------------- /examples/builtin/bounce/bounce.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/bounce/bounce.v -------------------------------------------------------------------------------- /examples/builtin/button_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/button_test/Makefile -------------------------------------------------------------------------------- /examples/builtin/button_test/button_test.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/button_test/button_test.pcf -------------------------------------------------------------------------------- /examples/builtin/button_test/button_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/button_test/button_test.v -------------------------------------------------------------------------------- /examples/builtin/debounce/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/debounce/Makefile -------------------------------------------------------------------------------- /examples/builtin/debounce/PushButton_Debouncer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/debounce/PushButton_Debouncer.v -------------------------------------------------------------------------------- /examples/builtin/debounce/debounce.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/debounce/debounce.pcf -------------------------------------------------------------------------------- /examples/builtin/debounce/debounce.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/debounce/debounce.v -------------------------------------------------------------------------------- /examples/builtin/led/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/led/Makefile -------------------------------------------------------------------------------- /examples/builtin/led/led.pcf: -------------------------------------------------------------------------------- 1 | set_io blue_led 49 2 | -------------------------------------------------------------------------------- /examples/builtin/led/led.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/led/led.v -------------------------------------------------------------------------------- /examples/builtin/led1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/led1/Makefile -------------------------------------------------------------------------------- /examples/builtin/led1/led.pcf: -------------------------------------------------------------------------------- 1 | set_io blue_led 49 2 | 3 | -------------------------------------------------------------------------------- /examples/builtin/led1/led.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/led1/led.v -------------------------------------------------------------------------------- /examples/builtin/led2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/led2/Makefile -------------------------------------------------------------------------------- /examples/builtin/led2/led.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/led2/led.pcf -------------------------------------------------------------------------------- /examples/builtin/led2/led.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/led2/led.v -------------------------------------------------------------------------------- /examples/builtin/led3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/led3/Makefile -------------------------------------------------------------------------------- /examples/builtin/led3/led.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/led3/led.pcf -------------------------------------------------------------------------------- /examples/builtin/led3/led.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/led3/led.v -------------------------------------------------------------------------------- /examples/builtin/leds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/leds/Makefile -------------------------------------------------------------------------------- /examples/builtin/leds/leds.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/leds/leds.pcf -------------------------------------------------------------------------------- /examples/builtin/leds/leds.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/builtin/leds/leds.v -------------------------------------------------------------------------------- /examples/camera/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/camera/Makefile -------------------------------------------------------------------------------- /examples/camera/camera.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/camera/camera.pcf -------------------------------------------------------------------------------- /examples/camera/camera.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/camera/camera.v -------------------------------------------------------------------------------- /examples/camera/camera_read.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/camera/camera_read.v -------------------------------------------------------------------------------- /examples/input/blackicemx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/input/blackicemx.mk -------------------------------------------------------------------------------- /examples/input/keypad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/input/keypad/Makefile -------------------------------------------------------------------------------- /examples/input/keypad/keypad_test.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/input/keypad/keypad_test.pcf -------------------------------------------------------------------------------- /examples/input/keypad/keypad_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/input/keypad/keypad_test.v -------------------------------------------------------------------------------- /examples/input/ps2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/input/ps2/Makefile -------------------------------------------------------------------------------- /examples/input/ps2/byte_to_hex.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/input/ps2/byte_to_hex.v -------------------------------------------------------------------------------- /examples/input/ps2/debug.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/input/ps2/debug.v -------------------------------------------------------------------------------- /examples/input/ps2/ps2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/input/ps2/ps2.v -------------------------------------------------------------------------------- /examples/input/ps2/ps2_test.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/input/ps2/ps2_test.pcf -------------------------------------------------------------------------------- /examples/input/ps2/ps2_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/input/ps2/ps2_test.v -------------------------------------------------------------------------------- /examples/input/ps2/uart_tx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/input/ps2/uart_tx.v -------------------------------------------------------------------------------- /examples/input/switches8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/input/switches8/Makefile -------------------------------------------------------------------------------- /examples/input/switches8/switches.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/input/switches8/switches.pcf -------------------------------------------------------------------------------- /examples/input/switches8/switches.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/input/switches8/switches.v -------------------------------------------------------------------------------- /examples/ledbaby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/ledbaby/Makefile -------------------------------------------------------------------------------- /examples/ledbaby/baby.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/ledbaby/baby.pcf -------------------------------------------------------------------------------- /examples/ledbaby/baby.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/ledbaby/baby.v -------------------------------------------------------------------------------- /examples/ledbaby/ledpanel.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/ledbaby/ledpanel.v -------------------------------------------------------------------------------- /examples/ledbaby/lines.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/ledbaby/lines.hex -------------------------------------------------------------------------------- /examples/output/7seg/7seg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/7seg/7seg.v -------------------------------------------------------------------------------- /examples/output/7seg/7seg_display.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/7seg/7seg_display.pcf -------------------------------------------------------------------------------- /examples/output/7seg/7seg_display.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/7seg/7seg_display.v -------------------------------------------------------------------------------- /examples/output/7seg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/7seg/Makefile -------------------------------------------------------------------------------- /examples/output/7seg/hex27seg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/7seg/hex27seg.v -------------------------------------------------------------------------------- /examples/output/blackicemx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/blackicemx.mk -------------------------------------------------------------------------------- /examples/output/leds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/leds/Makefile -------------------------------------------------------------------------------- /examples/output/leds/leds.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/leds/leds.pcf -------------------------------------------------------------------------------- /examples/output/leds/leds.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/leds/leds.v -------------------------------------------------------------------------------- /examples/output/rgbled/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/rgbled/Makefile -------------------------------------------------------------------------------- /examples/output/rgbled/rgbled.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/rgbled/rgbled.pcf -------------------------------------------------------------------------------- /examples/output/rgbled/rgbled.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/rgbled/rgbled.v -------------------------------------------------------------------------------- /examples/output/shiftout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/shiftout/Makefile -------------------------------------------------------------------------------- /examples/output/shiftout/shiftout.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/shiftout/shiftout.pcf -------------------------------------------------------------------------------- /examples/output/shiftout/shiftout.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/shiftout/shiftout.v -------------------------------------------------------------------------------- /examples/output/textlcd/BaudTickGen.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/textlcd/BaudTickGen.v -------------------------------------------------------------------------------- /examples/output/textlcd/LCDmodule.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/textlcd/LCDmodule.v -------------------------------------------------------------------------------- /examples/output/textlcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/textlcd/Makefile -------------------------------------------------------------------------------- /examples/output/textlcd/async_receiver.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/textlcd/async_receiver.v -------------------------------------------------------------------------------- /examples/output/textlcd/lcd_test.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/textlcd/lcd_test.pcf -------------------------------------------------------------------------------- /examples/output/textlcd/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/textlcd/start.sh -------------------------------------------------------------------------------- /examples/output/ws2812b/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/ws2812b/Makefile -------------------------------------------------------------------------------- /examples/output/ws2812b/ws2811.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/ws2812b/ws2811.v -------------------------------------------------------------------------------- /examples/output/ws2812b/wstest.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/ws2812b/wstest.pcf -------------------------------------------------------------------------------- /examples/output/ws2812b/wstest.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/output/ws2812b/wstest.v -------------------------------------------------------------------------------- /examples/pong/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/pong/Makefile -------------------------------------------------------------------------------- /examples/pong/hvsync_generator.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/pong/hvsync_generator.v -------------------------------------------------------------------------------- /examples/pong/pong.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/pong/pong.pcf -------------------------------------------------------------------------------- /examples/pong/pong.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/pong/pong.v -------------------------------------------------------------------------------- /examples/sensors/blackicemx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/sensors/blackicemx.mk -------------------------------------------------------------------------------- /examples/sensors/ping/7seg_display.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/sensors/ping/7seg_display.v -------------------------------------------------------------------------------- /examples/sensors/ping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/sensors/ping/Makefile -------------------------------------------------------------------------------- /examples/sensors/ping/hex27seg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/sensors/ping/hex27seg.v -------------------------------------------------------------------------------- /examples/sensors/ping/ping.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/sensors/ping/ping.v -------------------------------------------------------------------------------- /examples/sensors/ping/ping_test.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/sensors/ping/ping_test.pcf -------------------------------------------------------------------------------- /examples/sensors/ping/ping_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/sensors/ping/ping_test.v -------------------------------------------------------------------------------- /examples/sensors/quad/7seg_display.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/sensors/quad/7seg_display.v -------------------------------------------------------------------------------- /examples/sensors/quad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/sensors/quad/Makefile -------------------------------------------------------------------------------- /examples/sensors/quad/hex27seg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/sensors/quad/hex27seg.v -------------------------------------------------------------------------------- /examples/sensors/quad/quad_test.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/sensors/quad/quad_test.pcf -------------------------------------------------------------------------------- /examples/sensors/quad/quad_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/sensors/quad/quad_test.v -------------------------------------------------------------------------------- /examples/sim/tb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/sim/tb -------------------------------------------------------------------------------- /examples/sim/tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/sim/tb.v -------------------------------------------------------------------------------- /examples/sim/txuart.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/sim/txuart.v -------------------------------------------------------------------------------- /examples/sim/waves.vcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/sim/waves.vcd -------------------------------------------------------------------------------- /examples/verilator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/verilator/Makefile -------------------------------------------------------------------------------- /examples/verilator/thruwire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/verilator/thruwire.cpp -------------------------------------------------------------------------------- /examples/verilator/thruwire.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/verilator/thruwire.pcf -------------------------------------------------------------------------------- /examples/verilator/thruwire.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/verilator/thruwire.v -------------------------------------------------------------------------------- /examples/vgabuff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/vgabuff/Makefile -------------------------------------------------------------------------------- /examples/vgabuff/camera_read.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/vgabuff/camera_read.v -------------------------------------------------------------------------------- /examples/vgabuff/hvsync_generator.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/vgabuff/hvsync_generator.v -------------------------------------------------------------------------------- /examples/vgabuff/vgabuff.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/vgabuff/vgabuff.pcf -------------------------------------------------------------------------------- /examples/vgabuff/vgabuff.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/vgabuff/vgabuff.v -------------------------------------------------------------------------------- /examples/vgabuff/vgatest.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrie/blackicemxbook/HEAD/examples/vgabuff/vgatest.v --------------------------------------------------------------------------------