Subtraction of 16-bit Nos (Assembly Language)
; Program to compute 16 bit subtraction of the data. DATA SEGMENT ;INITIALIZE DATA SEGMENT NUM1 DW 4537H ;INITIALIZE NUM1 ANY DATA NUM2 DW 2222H ;INITIALIZE NUM2 ANY DATA RESULT DW ? ;INITIALIZE RESULT DATA ENDS … Continue reading Subtraction of 16-bit Nos (Assembly Language)
Addition of 16-bit Nos (Assembly Language)
; Program to compute 16 bit addition of the data. DATA SEGMENT ;INITIALIZE DATA SEGMENT NUM1 DW 4537H ;INITIALIZE NUM1 ANY DATA NUM2 DW 2222H ;INITIALIZE NUM2 ANY DATA RESULT DW ? ;INITIALIZE RESULT DATA ENDS ;END OF DATA SEGMENT CODE SEGMENT ;INITIALIZE CODE … Continue reading Addition of 16-bit Nos (Assembly Language)
DUDEiCON | Android App Review
After the huge success of Social Chat apps like WhatsApp, WeChat, Snapchat, Hike, BBM (Now available for Android as well), here comes yet another Social Chat App & it’s called DUDEiCON pronounced as DUDE-ih-con, not DUDE-eye-con. All these apps make you very comfortable when it comes to chatting or texting a message to a friend & the most important feature of all these apps is … Continue reading DUDEiCON | Android App Review
Stop & Wait (NS2)
set ns [new Simulator] $ns color 1 Blue set nf [open out.nam w] $ns namtrace-all $nf proc finish {} { global ns nf $ns flush-trace close $nf exec nam out.nam & exit 0 } set n0 [$ns node] set n1 [$ns node] $ns at 0.0 “$n0 label \” sender \” ” $ns at 0.0 “$n1 label \”receiver\” ” $ns duplex-link $n0 $n1 1Mb 200ms DropTail … Continue reading Stop & Wait (NS2)
Multicasting (NS2)
set ns [new Simulator -multicast on] set f [open out.tr w] $ns trace-all $f $ns namtrace-all [open out.nam w] $ns color 1 red # prune/graft packets $ns color 30 purple $ns color 31 bisque set n0 [$ns node] set n1 [$ns node] set n2 [$ns node] set n3 [$ns node] # Use automatic layout $ns duplex-link $n0 $n1 1.5Mb 10ms DropTail $ns duplex-link $n1 $n2 … Continue reading Multicasting (NS2)
