Search:

Type: Posts; User: uscuba2

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,655

    the 64 bits of physical memory was given by my...

    the 64 bits of physical memory was given by my professor. He knows that it is not realistic.
  2. Replies
    5
    Views
    1,655

    virtual page question

    An other, question how do I figure how many bits are needed for an offset, how many physical page and how many virtual pages. again using 8 bit addressing. 64 bits phyical memory and a page...
  3. Thread: Cache question

    by uscuba2
    Replies
    1
    Views
    1,051

    Cache question

    This is part of a a homework assignment, I want to make sure that I am understanding correctly. In class, my professor said that in direct mapping using 16 bit addresses, we have 4 tag bits,...
  4. Replies
    4
    Views
    4,959

    what mean? I know that they are hex values but...

    what mean? I know that they are hex values but why are these four important?
  5. Replies
    4
    Views
    4,959

    correct, it the At&T style. It is was unfamilar...

    correct, it the At&T style. It is was unfamilar to me (like most assembly is, since this project is the first exposure I have to assembly.
  6. Replies
    4
    Views
    4,959

    New binary bomb help

    I know am I looking for a int and har and a int again. I am not sure break I need to to break or what mozbl or movb is?

    Dump of assembler code for function phase_4:
    0x08048909...
  7. Replies
    8
    Views
    13,230

    First, yes, this bomb is a common assignment...

    First, yes, this bomb is a common assignment (yale to communty college)Therefore, I am in the usa. A google search will confirm this. To catus, ours does not report back (that code was ...
  8. Thread: emacs question

    by uscuba2
    Replies
    2
    Views
    1,296

    emacs question

    I am using emacs. I am in the shell, using gdb, and when I do disas what ever, it does off the screen what to I do so I can view the whole thing?
  9. Replies
    8
    Views
    13,230

    I get that is where the compare is. Because ...

    I get that is where the compare is. Because if I entered 1 2 3 4 5 6 as the input and do a break at
    0x080488df <phase_3+57>: cmp %eax,%edx then print $eax I get 4 for eax and 1...
  10. Replies
    8
    Views
    13,230

    binary bomb help

    I am really stuck on phase 3. Since the 1st and fourth numbers (same for the 2nd & 5th and 3rd and 6th) should be the same numbers to
    defuse the 1st bomb,
    I confused as to where to begin looking to...
  11. Replies
    4
    Views
    2,028

    I would but do not know what to use/how to do...

    I would but do not know what to use/how to do so.
  12. Replies
    4
    Views
    2,028

    Decimal convert

    I need to convert decimal to IEEE 32- floating point for a couple homework problems by hand. I was wondering if my answers were correct.


    13.5 is 0 0011011 00000000 00000000 00000000...
  13. Am I conatenating these strings correcting

    My exposure to arrays and pointers are bit limited. And concatened strings even less ( it was not covered in my class so I had to use my book. ) So I know there are errors. I can not use...
  14. Replies
    6
    Views
    2,024

    Function Operator that this function emulates...

    Function Operator that this function emulates Operators you may use
    for bitOr(int, int) = ~ &

    for bitXOr(int, int) = ~ & |

    for bitNot(int) = & ^ |

    for ...
  15. Replies
    6
    Views
    2,024

    This is what I need to to do: Write 4 C...

    This is what I need to to do:

    Write 4 C functions, as specified in the table below, which emulate the C operators |, ^, ~, and !=. You may use only straightline code (i.e., no loops or...
  16. Replies
    6
    Views
    2,024

    Is there any wrong?

    I can not figure out why I am getting compling errors . can someone help? And it there another number to use for bitnot besides -1?


    #include <stdio.h>

    int main()
    {
    int x, y;

    int...
Results 1 to 16 of 16