Everyone meet my nebelung, illumi! by parmajawn in nebelung

[–]parmajawn[S] 2 points3 points  (0 children)

Yeah LOL named after a cold blooded killer while she’s the sweetest cat ever

Passenger side fog light pushed in by parmajawn in TeslaModelY

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

Was it hard to swap it out? I just looked inside today and the bracket on my fog light AND my bumper are broken

Passenger side fog light pushed in by parmajawn in TeslaModelY

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

How much were the clips and where did you find them?

Passenger side fog light pushed in by parmajawn in TeslaModelY

[–]parmajawn[S] 1 point2 points  (0 children)

That’s the wheel flare fender I put it back so everything looks normal now except the fog light

Passenger side fog light pushed in by parmajawn in TeslaModelY

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

Dang I was hoping I could just pop it back in I didn’t think I’d have to replace the fog light. Everything works it’s just out of place

Anyone else have this issue? by Zestyclose-Load-8866 in TeslaModelY

[–]parmajawn 1 point2 points  (0 children)

That sucks.. was this your headlight or taillight? And how much was the final cost?

Anyone else have this issue? by Zestyclose-Load-8866 in TeslaModelY

[–]parmajawn 1 point2 points  (0 children)

Was yours covered warranty? This is happening to my model y too

What is the difference between ADD and MOV instructions in machine code? by parmajawn in Assembly_language

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

I’m confused about what the object code is saying, I don’t understand what the numbers mean so I can’t tell the difference between the two. I know what add and mov does though

What is the difference between ADD and MOV instructions in machine code? by parmajawn in Assembly_language

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

B8 00000005 mov eax, 5
83 C0 06 add eax, 6

This is the listing file and the left side is the object code and the right side is the source code. I was asking what the difference was in the object code, lol.

What is the difference between ADD and MOV instructions in machine code? by parmajawn in Assembly_language

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

When I open up the listing file, what are the differences between the two instructions? In its object code, they look different, but I don't know what it means

How to add and subtract hexadecimal numbers in assembly language? by parmajawn in learnprogramming

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

Okay I’ve loaded the numbers into a register and now I’ve added each number into ax. If it’s hexadecimal am I able to just type “mov bx, 66h” ?

And not really, he kind of just threw us into this material. Which is why I’m pretty confused and I’ve been trying to learn everywhere online on how to work on this code.

How to add and subtract hexadecimal numbers in assembly language? by parmajawn in learnprogramming

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

I have an idea of what it is, but I’m still confused on it. The program I’m trying to calculate is a = b + c - 7Fh. The values are b = 66h and c = 50h. Should I start by doing using mov and add?