Recent content by D a M i E n

  1. D

    Control Program for Device Driver Process

    The control program for a device-driver process is an infinite loop. Roughly, the loop body is: wait for I/O request from user process; send I/O command to device; wait for command completion; notify (unblock) user process. a) [10 marks] Suppose the device driver waits by polling the...
  2. D

    Solve Boolean Algebra Problem: Output 1 for Numbers > 9 | IC Design Tips

    *ab'cd' + Ab'cd + Abc'd' + Abc'd + Abcd' + Abcd *ab'c(d'+d) +abc'(d'+d) + Abc(d'+d)-----> (d+d') =>1 *ab'c + Abc' + Abc *a(b'c+bc') +abc *a[b Xor C + Bc]
  3. D

    Programming Tips for Creating a Game Like Mother

    I'm sure that a this game is nothing to compare to half life, but anyway, to rephrase, the question was : Can anyone give me some tips on how to start to implement a copy of this game? Which is better, C++ or Java in such a case? How important is the use of DirectX in implementation? Just...
  4. D

    Programming Tips for Creating a Game Like Mother

    Programming tip needed :) Well this is the story, I have to create a game similar to this one http://www.windowsgames.co.uk/mother.html I'm sure it's not a big deal, but thing is I'm majoring in hardware, so I'm kinda back on programming issues. So I was wondering if anyone can give...
Back
Top