├── .gitignore ├── 1024x768.S ├── 1024x768.bin ├── 1280x1024.S ├── 1280x1024.bin ├── 1280x720.S ├── 1280x720.bin ├── 1600x1200.S ├── 1600x1200.bin ├── 1680x1050.S ├── 1680x1050.bin ├── 1920x1080.S ├── 1920x1080.bin ├── 2560x1440.S ├── 2560x1440.bin ├── 2880x1800.S ├── 2880x1800.bin ├── 3840x2160.S ├── 3840x2160.bin ├── 800x600.S ├── 800x600.bin ├── EXAMPLE_MODELINES ├── LICENSE ├── Makefile ├── README.md ├── edid.S ├── hex └── modeline2edid /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /1024x768.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/1024x768.S -------------------------------------------------------------------------------- /1024x768.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/1024x768.bin -------------------------------------------------------------------------------- /1280x1024.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/1280x1024.S -------------------------------------------------------------------------------- /1280x1024.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/1280x1024.bin -------------------------------------------------------------------------------- /1280x720.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/1280x720.S -------------------------------------------------------------------------------- /1280x720.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/1280x720.bin -------------------------------------------------------------------------------- /1600x1200.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/1600x1200.S -------------------------------------------------------------------------------- /1600x1200.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/1600x1200.bin -------------------------------------------------------------------------------- /1680x1050.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/1680x1050.S -------------------------------------------------------------------------------- /1680x1050.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/1680x1050.bin -------------------------------------------------------------------------------- /1920x1080.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/1920x1080.S -------------------------------------------------------------------------------- /1920x1080.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/1920x1080.bin -------------------------------------------------------------------------------- /2560x1440.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/2560x1440.S -------------------------------------------------------------------------------- /2560x1440.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/2560x1440.bin -------------------------------------------------------------------------------- /2880x1800.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/2880x1800.S -------------------------------------------------------------------------------- /2880x1800.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/2880x1800.bin -------------------------------------------------------------------------------- /3840x2160.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/3840x2160.S -------------------------------------------------------------------------------- /3840x2160.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/3840x2160.bin -------------------------------------------------------------------------------- /800x600.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/800x600.S -------------------------------------------------------------------------------- /800x600.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/800x600.bin -------------------------------------------------------------------------------- /EXAMPLE_MODELINES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/EXAMPLE_MODELINES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/README.md -------------------------------------------------------------------------------- /edid.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/edid.S -------------------------------------------------------------------------------- /hex: -------------------------------------------------------------------------------- 1 | "\t" 8/1 "0x%02x, " "\n" 2 | -------------------------------------------------------------------------------- /modeline2edid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatrevorjay/edid-generator/HEAD/modeline2edid --------------------------------------------------------------------------------