On Monday, 21 November 2011 08:53:58 UTC, Rishi wrote:
>
> Hi All,
>
>
> I am using Sphinx for writing a document on assembly level programming and 
> I must say that its the best tool for writing any documentation.
>
> I am facing a small issue here
>
>
> I have one piece of code which is as follows. This code is not getting 
> highlighted.
> ---------------------
> *; Printing 'A'*
>
> *.model small
>
> .data
>
> .code 
>
>     ; Set the data segment.
>     MOV AX, @DATA
>     MOV DS, AX
>     
>
> ; We will move the ASCII value of 'A' in the DL register.
>     MOV DL, 41H
>
> ; We will move 02H in the AH register, this will ask int 21h to print a 
> single character.    
>     MOV AH, 02H
>     INT 21H
>
>
>     MOV AX, 4C00H
>     INT 21H
>
>     END**
> *-----------------------
> While when I changed the code to the following its getting highlighted 
> properly. I am not getting why is this happening. The only difference is 
> the bolded part.
> --------------------------
> *; Printing 'A' 
>
> .model small
>
> DATA SEGMENT
>
> DATA ENDS
>
>
> CODE SEGMENT
>
>     ; Set the data segment.
>     assume cs:code, ds: data    
>
> ; We will move the ASCII value of 'A' in the DL register.
>     MOV DL, 41H 
>
> ; We will move 02H in the AH register, this will ask int 21h to print a 
> single character.   
>     MOV AH, 02H 
>     INT 21H 
>
>
>     MOV AX, 4C00H
>     INT 21H 
>
> CODE ENDS
>     END **
> *----------------------------
>
> I tried uploading the code on the website http://pygments.org/ and found 
> that both the code are getting highlighted properly. 
>
> The version of pygments on the system is 
>
> * $ pygmentize -V
> Pygments version 1.3.1, (c) 2006-2008 by Georg Brandl.
> *
>
> Hello,

I am getting the same issue.

Has anyone found a solution to this? 

Thanks

Craig
 

-- 
You received this message because you are subscribed to the Google Groups 
"sphinx-dev" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/sphinx-dev/-/oT6XUr5KeyYJ.
To post to this group, send email to sphinx-dev@googlegroups.com.
To unsubscribe from this group, send email to 
sphinx-dev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.

Reply via email to