can someone show me how to display the system time ?
xellos 0 Newbie Poster
Recommended Answers
Jump to PostIn its simplest form
mov ah,0 int 1Ah ; TIME - Get System time ; CX:DX = number of clock ticks since midnight ; AL = midnight flag
There are approx. 18.2 clock ticks per second.
If you mean the Real-time clock
mov …
Jump to PostHere is a really cool piece of code for printing out
the decimal representation of values.
The amount of digits can even be adjusted!
Value to be printed is placed on the stack.
Enjoy!bits 16 org 100h start: push 1234 call putdec_w add sp,2 ret putdec_val …
All 8 Replies
wildgoose 420 Practically a Posting Shark
xellos 0 Newbie Poster
wildgoose 420 Practically a Posting Shark
Nathan Campos 23 Junior Poster
xellos 0 Newbie Poster
wildgoose 420 Practically a Posting Shark
Nathan Campos 23 Junior Poster
NotNull 23 Posting Whiz in Training
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.