June 13th, 2009
This is a useful simulator for who engaged with 8085 programming. It came with a 8085 assembler, disassembler, debugger and also a compiler. You can download an evaluation copy of this simulator from http://www.oshonsoft.com/downloads.html.
[....]
read more
June 13th, 2009
LDA 2000 // Load multiplicant to accumulator
MOV B,A // Move multiplicant from A(accumulator) to B register
LDA 2001 // Load multiplier to accumulator
MOV C,A // Move multiplier from A to C
MVI A,00 // Load immediate value 00 to a
L: ADD B // Add B(multiplier) with [....]
read more
March 4th, 2009
Restrict a user's logon hours :-
For that you need to use the net user command from the Command Prompt.
Start >> RUN >> type cmd and press enter
Some examples are given below
1 - net user kannan /time:M-F,09:00-15:00
2 - net user chandra /time:M-F,7am-4pm
3 - net user soorya /time:M,3am-5pm;T,2pm-4pm;W-F,7:00-17:00
4 - net user [....]
read more