maikmerten
maikmerten
Great! I attached a Makefile that "works for me" and hope it works for you as well. I'm using sdcc as packaged by Ubuntu and everything compiles fines (albeit with...
Oh, you need to place the file "Makefile" in the same directory as the "compile.bat" file and simply invoke "make" in the directory, without parameters. By default the "all"-target should...
Hmmm... I attached some pictures regarding file setup, commands and tool versions. You're right, it makes perfect sense that the other programmer is a user just like us.  
Bin auch in Deutschland. Hallo! Wenn ich die Makefile mit der compile.bat vergleiche, dann fehlt die Entsprechung zu `SDCC\bin\hex2bin -c %project_name%.hex` Wenn ich das richtig sehe, dann soll hex2bin ja...
Hello kkdas088, in FPGAs, the PLL (which generates the needed clock signals) is a vendor-specific component. For instance, for Altera/Intel FPGAs, a "altpll" needs to be instantiated (the "alt" in...
Just ran into this problem as well. I built mozjpeg from current git. Input:  Compressing with mozjpeg: `cjpeg-mozjpeg -q 50 ./zeichnung.png > zeichnung.jpg` Output: 
Quakespasm Spiked, which has this issue fixed, has modifications to `R_DrawBrushModel` to subtract light and model origins and subsequent changes in `R_MarkLights`. I ported those over to Quakespasm, which delivers...
Okay, the partial fix indeed is partial. Quakespasm Spike introduced the complete thing in this commit: https://github.com/Shpoike/Quakespasm/commit/f6d31e9db928cb058398ba9002ca4b2094a2926f
Hello, your toolchain is only set up for 64-bit RISC-V. I recommend building your own toolchain, e.g. ``` git clone --recursive https://github.com/riscv/riscv-gnu-toolchain ./configure --prefix=/opt/riscv --with-arch=rv32i --with-abi=ilp32 make ```
I pushed https://github.com/maikmerten/hmp3/commit/028bc2f261e4e000b13e8ddaa5b6426fbbd48060 to the dev branch. This allows MPEG1 down to 32 kbit/s. Can you test if this meets your requirements? (you might want to play with the `-F`-switch...