Search:

Type: Posts; User: stud91

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    4,780

    iPhone applications development on Windows 7

    I do not own a Mac machine so I would like to create a virtual machine on Windows 7 so that I am able to run xcode on it for iPhone applications development.I know the process of how to create a...
  2. Replies
    1
    Views
    2,288

    Reading image data from COM7 port

    I am doing a project in which I have to display the image captured from a camera chip on to the PC.

    The image data is being sent through the COM7 port to the computer. (I have checked it using a...
  3. So this means that Host B would then use 25% of...

    So this means that Host B would then use 25% of bandwidth of the link = 0.25Mbps.
  4. Throughput calculation in Statistical Multiplexing scenario

    I found this particular homework question a bit confusing.

    Q) We have two communication sessions. Host A sends unlimited data to Host A' and Host B also sends unlimited amount of data to Host B'....
  5. Replies
    2
    Views
    3,736

    Thanks a lot for your reply... I also found that...

    Thanks a lot for your reply... I also found that random MIPS assembly doc :)

    Here it is:
    http://www.weblearn.hs-bremen.de/risse/RST/docs/MIPS/mips-isa.pdf
  6. Replies
    2
    Views
    3,736

    MIPS synchronisation (ll/sc)

    I wanted to know that if while using ll/sc there is a change in processor before the sc statement is executed what would be result.

    E.g.

    CPU 1 ==> $t1 = 1, $t0 = 2
    CPU 2 ==> $t1 = 30, $t0 = 40...
  7. Replies
    6
    Views
    2,669

    @anduril462 Yes it should be lw. Thanks a lot...

    @anduril462 Yes it should be lw. Thanks a lot guys!

    The corrected code is shown below:



    sub $t0, $s2, $s1
    mult $t0, $t0, 4
    lw $t0, $t0($s7)
    mult $t0, $t0, 4
  8. Replies
    6
    Views
    2,669

    oh...then where should I post this??

    oh...then where should I post this??
  9. Replies
    6
    Views
    2,669

    Convert C into MIPS

    I wanted to convert this C code into MIPS.

    C Code:

    f = A[B[h-g]]

    We assume that h > g & B[h-g] > 0. h,g,f are integers.

    Also assume that f is assigned to register $s0, g to $s1, h to $s2.
  10. Replies
    5
    Views
    5,630

    Yeah i tried that and everything looks good but i...

    Yeah i tried that and everything looks good but i currently i am at the second level of the binary tree structure...I want to go to at most 5th level (meaning that there would be 32 processes working...
  11. Replies
    5
    Views
    5,630

    Yes but the recursive sorting should be done in...

    Yes but the recursive sorting should be done in parallel and not sequential.

    The child on the right should further have a child....The figure should be similar to a complete binary tree.
  12. Replies
    5
    Views
    5,630

    Parallel merge sort

    Hey everyone! So I wanted to implement parallel merge sort in C using fork(), mmap(...) and waitpid() system calls only.....The program should create processes until the problem size is less than...
  13. Replies
    18
    Views
    4,851

    I am really sorry about this. Actually this is my...

    I am really sorry about this. Actually this is my first posting in such kind of forums.
  14. Replies
    18
    Views
    4,851

    Thanks guys...Code updated and it executes the...

    Thanks guys...Code updated and it executes the way it should. @CommonTater i know...just being careless :)...Actually this is my first C course...I have C++ & Java background though....
    Thanks...
  15. Replies
    18
    Views
    4,851

    Thanks for reply! I have edited the code but it...

    Thanks for reply! I have edited the code but it still doesn't work.....As in if the input text file contains:
    "This program is in C."
    And i search for "This" it gives me a no. Is there any problem...
  16. Replies
    18
    Views
    4,851

    can you tell me how to do that coz im new at C...

    can you tell me how to do that coz im new at C...
  17. Replies
    18
    Views
    4,851

    sorry my bad....i posted the old version...now i...

    sorry my bad....i posted the old version...now i have updated...the code does compile in the new version and not in the old one.....
  18. Replies
    18
    Views
    4,851

    Search string in a text file

    Hey everyone! I am having trouble with searching. My code compiles but doesn't give what I want. When I output the database array it only gives me the last word of the input file repeated d_size many...
Results 1 to 18 of 18