Questions tagged [code-view]

20 questions
5
votes
1 answer

Upper bits of EBX are zeroed out when single-stepping in CodeView

I have the following simple program written in MASM for an i386 processor: TITLE BLA .MODEL SMALL .386 .STACK .DATA .CODE MAIN PROC FAR .STARTUP MOV EBX,0FFFFFFFFH; (1) …
jupiter_jazz
  • 333
  • 2
  • 8
5
votes
3 answers

Microsoft's CodeView format specs

I've been looking for a Microsoft document from the 1990's called CodeView Symbolic Debug Information Specification. It's referenced by Microsoft in their PE/COFF spec. Information about this document is sparse, and every lead I come across ends in…
zildjohn01
  • 11,339
  • 6
  • 52
  • 58
4
votes
2 answers

Writing to Stack in Extern 8086 Procedure is inactive through MOV [BP] ,AL

Problem : Inactive write to stack inside an external procedure Code : Inside an extern procedure which asks the user to input a string then returning it to the main through the stack. String is defined at the data segment with a name different than…
2
votes
0 answers

assembler x86 16bit - masm windows: running my program via the debugger (cv) bring different result that without debuging

I have got a project to do as a student and i was about to finish him when i occured a strange thing - when i running my program via the cv debugger i get diffrent result than by running it simply.... Here is my code, he suppose to do this thing :…
omersk2
  • 79
  • 1
  • 11
2
votes
1 answer

What is the RED background with the letter 'R' in Dreamweaver CC Codeview?

I 'm not sure when exactly this comes up, but in the middle of working on the file, I suddenly get this huge RED code block. I can click on the 'R' and it changes my document (hard to say exactly what changed, there is no info on hover). Bottom…
Anne Stahl
  • 121
  • 1
  • 1
  • 9
2
votes
1 answer

LOOP instruction fails to loop even though (--cx != 0)

I'm implementing a multiplication algorithm for school, so please no help with the algorithm. I'm using C subroutine conventions, so I don't need to push CX, and the result is returned in DX:AX . I'm using codeview to do the debugging. At the LOOP…
Doug Clark
  • 332
  • 5
  • 21
2
votes
2 answers

Variables Behaving Oddly (Intel 8086)

Edit: Answered my own question. See below. -_- I have a variable defined in the .data segment as follows: retVal DW 0100h ;stores hex fraction of the intermediate value. Starts at 1.00 This is the value that I add or subtract to to get my return…
Raven Dreamer
  • 6,940
  • 13
  • 64
  • 101
1
vote
1 answer

When using View Code on a XOML file, designer view is displayed

In Visual Studio: When you right-click on a xoml file in the solution explorer and select "View Code" it takes you to the designer (design view). Steps to Reproduce create a xoml add something into the code-behind [I used C#] Close the…
phuntism
1
vote
1 answer

Which is the attribute to double-click a form in Solution Explorer and open in code view in Visual Studio?

I used to know of a class attribute that you could set your classes as "form" or as "code" and if you set a form as "code", double clicking it's file in the Solution Explorer, would open the form in code view instead of the default form view. I…
rfgamaral
  • 16,546
  • 57
  • 163
  • 275
0
votes
1 answer

how to display programming code as colorful and correctly formatted in flutter

I want to display the content of this url in flutter application with code viewer, is that possible to do that? I am not talking about only dart code. I tried to show it with flutter_markdown, and I think it is basic
Nijat Namazzade
  • 652
  • 5
  • 15
0
votes
1 answer

how to fix the scrolling width of HorizontalScrollView?

Hlo viewers , I am building an app in which i am using codeview, so for viewing all codeview i placed a horizontall scroll view for codeview , it is working fine but horizontal scroll view is keep scrolling , by which it impact over the…
Amit Swami
  • 23
  • 4
0
votes
1 answer

How to use scrollview over codeview?

i'm building an tutorial app where im displaying code snippet to user, but scrolling is just working on white area of the screen but not over the code snippet, may be codeview is overlapping the scrollview, How to resolve it so the codeview also…
Amit Swami
  • 23
  • 4
0
votes
1 answer

How to view github repository code with vs code interface?

when finding a suitable code in a GitHub repository we need to see what is folder structure is and also need to navigate all of the code easily to review that code. In this kind of situation, GitHub web navigation is very annoying. Because we can…
Supun Sandaruwan
  • 1,814
  • 19
  • 19
0
votes
3 answers

which software can view any developed software code?

I would to know the software which can view code of Microsoft word software and any other software code. So that I can learn from that software code and how they used in there. (sound's like illegal but really it is helpful for the programmer) any…
Cin Sb Sangpi
  • 687
  • 3
  • 7
  • 22
0
votes
1 answer

Angular json editor code view text caret misalignment with text

I have started to use JSON editor library and angular wrapper from angular-tools/ng-jsoneditor. The bug appears to be very annoying when switched to code view. Anyone had something similar? Situation image Situation image 2 Happens only when quotes…
BuFF
  • 9
  • 4
1
2