mirror of
https://github.com/MiSTer-devel/CDi_MiSTer.git
synced 2026-04-19 03:04:19 +00:00
- 25 fps hard coded for experiments - Presentation time utilized to define start of playback - Makes use of FIFO structure for stable frame rate - Firmware - Provides all 3 planar framebuffers to hardware for playback
8 lines
235 B
Bash
Executable File
8 lines
235 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script applys a common codestyle to all verilog files
|
|
cd "$(dirname "$0")/../rtl"
|
|
|
|
verible-verilog-format --inplace --indentation_spaces 4 \
|
|
../rtl/*.v ../rtl/*.sv ../rtl/*/*.sv ../rtl/*/*/*.sv ../*.v ../*.sv
|