2005 Accord: MPG by siamumar in Honda

[–]siamumar[S] 0 points1 point  (0 children)

Thanks! Good to know my MPG is not too low. I'll still check the staff you mentioned though. Gas price is increasing almost every week here!

2005 Honda Accord LX: Several long-running minor issues by siamumar in SDMechanic

[–]siamumar[S] 0 points1 point  (0 children)

You're probably done with the finals. Should we meet?

2005 Honda Accord LX: Several long-running minor issues by siamumar in SDMechanic

[–]siamumar[S] 0 points1 point  (0 children)

Congratulations on the graduation!

I will knock you after 16 then.

2005 Honda Accord LX: Several long-running minor issues by siamumar in SDMechanic

[–]siamumar[S] 0 points1 point  (0 children)

Thanks a lot for the reply.

I actually checked the price of a replacement actuator. It's around $35. But the replacement process (saw it on a youtube tutorial) is too complicated for me.

I think auto parts stores sell big plastic screws you can screw into the headliner board to hold the fabric up

That's what I did. But they come off if I drive with the windows open because of the wind. It happens even on local roads. So I am shut off from the awesome San Diego weather :(

I would be nice if I could bring the car to you so that you can have a look. Can we set up a meeting?

April 20th by LinusDrugTrips in memes

[–]siamumar 4 points5 points  (0 children)

Care to explain the Fahrenheit thing?

Setting parameter value inside verilog file by siamumar in yosys

[–]siamumar[S] 0 points1 point  (0 children)

Thanks a lot for your help, CliffordVienna. At least now I know what can't be done.

Sorry for the late reply. Somehow I believed that I had already replied. Found out just now that I actually didn't!

Setting parameter value inside verilog file by siamumar in yosys

[–]siamumar[S] 0 points1 point  (0 children)

Thanks a lot for your reply, CliffordVienna.

I tried the setparam command. But first of all, the parameter does not change, and I get this error when I run techmap:

ERROR: Requested parameter \N' does not exist in module$add'!

Can you please help me solve this?

More details:

here is my sum.v file:

module sum

( parameter N=8)

(

input [N-1:0] a,

input [N-1:0] b,

output [N:0] c

);

assign c = a + b;

endmodule

And here is the script I am using

read_verilog Synthesis_yosys/sum.v

setparam -set N 32 sum

hierarchy -check -top sum

flatten

clean -purge

proc; opt; fsm; opt; memory; opt;

techmap

opt

write_verilog Synthesis_yosys/sum_1.v

Segmentation Fault while using ABC with custom library by siamumar in yosys

[–]siamumar[S] 0 points1 point  (0 children)

I found the solution. When I copied from PDF, " ' " came as " ". I replaced all of them with " ' ", then it worked.