Recent content by Tyzall

  1. T

    Find Area with Polar Coordinates: Help for Exams

    Hello, I actually have an exam coming on series, sequences, polar coordinates and parametric equations. The only major thing I'm having problems with is finding area with polar coordinates. Especially when it comes to finding the "area under both curves" for example:"Find the area under both...
  2. T

    Set bits 18, 19, 20, 21 to 1 ( Mips)

    No, it's a lot different than the first. lui allows you to modify the upper 16 bits, but makes the lower 16 bits 0.
  3. T

    Set bits 18, 19, 20, 21 to 1 ( Mips)

    Hahahah... This is quite ironic, I had the exact same homework questions...
  4. T

    Set bits 18, 19, 20, 21 to 1 ( Mips)

    You couldn't simply just or it, because that would only allow you to change the lower 16 bits. By using the lui into another temp, it allows you to manipulate bits 16-31. also: I think by "like an ex" he meant "like an example."
  5. T

    Set bits 18, 19, 20, 21 to 1 ( Mips)

    First, you lui into a temp register for example lui $t0, 0000 0000 0011 1100 then, you or that with v0. or $v0, $v0, $t0 Easy enough :)
Back
Top