Click here to Skip to main content
15,914,109 members
Home / Discussions / Article Writing
   

Article Writing

 
GeneralRe: Delete non(article request) Pin
Pete O'Hanlon22-Jun-08 9:12
mvePete O'Hanlon22-Jun-08 9:12 
GeneralRe: Delete non(article request) Pin
Paul Conrad28-Jun-08 5:21
professionalPaul Conrad28-Jun-08 5:21 
Questionis it possible? Pin
gillardg17-Jun-08 22:16
gillardg17-Jun-08 22:16 
AnswerRe: is it possible? Pin
Pete O'Hanlon18-Jun-08 10:32
mvePete O'Hanlon18-Jun-08 10:32 
AnswerRe: is it possible? Pin
Paul Conrad28-Jun-08 5:23
professionalPaul Conrad28-Jun-08 5:23 
QuestionHelp again Please....i am still learning.....need a tutor Pin
Joselito Garcia15-Jun-08 15:20
Joselito Garcia15-Jun-08 15:20 
AnswerRe: Help again Please....i am still learning.....need a tutor Pin
Scott Dorman15-Jun-08 15:27
professionalScott Dorman15-Jun-08 15:27 
QuestionI'm a Novice Pin
Joselito Garcia15-Jun-08 15:16
Joselito Garcia15-Jun-08 15:16 
This is my code, i cannot seem to get it to run two line running from the same point can someone edit this with notation as to where i needed to make my changes.


Please Email me with a solution please....
; video.asm
; uses interrupts to set video mode and draw a line

include 'emu8086.inc'

org 100h ; set location counter to 100h

jmp CodeStart

DataStart:
xStart dw 50 ; x coordinate of line start
yStart dw 50 ; y coordinate of line start
length dw 25 ; length of line

CodeStart:

; set the video mode 320x200, 256 colors
mov al, 13h
mov ah, 0
int 10h

; initialize cx (x coord) to xStart + length
mov cx, xStart
add cx, length


; loop from (xStart+length) to xStart to draw a horizontal line
LoopStart:

; draw a pixel
; set color in al, x in cx, y in dx
mov al, 50
mov dx, yStart

; set sub function value in ah to draw a pixel
; and invoke the interrupt
mov ah, 0ch
int 10h

mov dx, yStart
add dx,length

; decrement the x coord
sub cx, 1

; test to see if x coord has reached start value
cmp cx, xStart

; continue loop if cx >= xStart
jae LoopStart

ret
AnswerRe: I'm a Novice Pin
Scott Dorman15-Jun-08 15:26
professionalScott Dorman15-Jun-08 15:26 
AnswerRe: I'm a Novice Pin
Paul Conrad28-Jun-08 5:25
professionalPaul Conrad28-Jun-08 5:25 
Questionrequest : Webbased text editor with HTML output Pin
RAJAGOPAL PATABALLA12-Jun-08 1:24
RAJAGOPAL PATABALLA12-Jun-08 1:24 
AnswerRe: request : Webbased text editor with HTML output Pin
Scott Dorman15-Jun-08 15:24
professionalScott Dorman15-Jun-08 15:24 
QuestionConverting dataset file(.xsd) to something better. Pin
Silver Pearl11-Jun-08 20:29
Silver Pearl11-Jun-08 20:29 
AnswerAm I missing something? Pin
Pete O'Hanlon11-Jun-08 22:05
mvePete O'Hanlon11-Jun-08 22:05 
Questionjava and C# interoperability Pin
John Willcox11-Jun-08 9:55
John Willcox11-Jun-08 9:55 
AnswerRe: java and C# interoperability Pin
Pete O'Hanlon11-Jun-08 10:23
mvePete O'Hanlon11-Jun-08 10:23 
QuestionPDF Manipulation Classes Pin
Zhirayr Avetisyan10-Jun-08 0:21
Zhirayr Avetisyan10-Jun-08 0:21 
AnswerWrong forum - this is for article requests and ideas; not pleas for help Pin
Pete O'Hanlon10-Jun-08 1:17
mvePete O'Hanlon10-Jun-08 1:17 
Questionc# user login information Pin
kingkeamo29-May-08 0:26
kingkeamo29-May-08 0:26 
AnswerWrong forum Pin
Pete O'Hanlon29-May-08 1:43
mvePete O'Hanlon29-May-08 1:43 
Questionreally simple but completly stumped Pin
samuelgamlin25-May-08 4:01
samuelgamlin25-May-08 4:01 
Questionadd check box in gridview and get the checked rows into another gridview in c#.net Pin
senpriya23-May-08 0:20
senpriya23-May-08 0:20 
AnswerStill the incorrect forum Pin
Pete O'Hanlon23-May-08 2:19
mvePete O'Hanlon23-May-08 2:19 
Questionadd popup calender in gridview Pin
senpriya23-May-08 0:08
senpriya23-May-08 0:08 
AnswerIncorrect forum Pin
Pete O'Hanlon23-May-08 2:19
mvePete O'Hanlon23-May-08 2:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.