adam-maj / tiny-gpu

A minimal GPU design in Verilog to learn how GPUs work from the ground up
6.6k stars 491 forks source link

Remove '' in Makefile #5

Closed gfvvz closed 2 months ago

gfvvz commented 2 months ago

I think there is a typo in the current Makefile, it should remove '' to make sed comand like this:

sed -i '1s/^/`timescale 1ns\/1ns\n/' build/gpu.v

original one is

sed -i '' '1s/^/`timescale 1ns\/1ns\n/' build/gpu.v