|
|
| version 1.1.1.1, 2003/10/16 17:59:09 | version 1.5, 2005/02/04 05:32:25 |
|---|---|
| Line 1 | Line 1 |
| #include "compiler.h" | #include "compiler.h" |
| #include "resource.h" | #include "resource.h" |
| #include "np2.h" | #include "np2.h" |
| #include "i286.h" | |
| #include "viewer.h" | #include "viewer.h" |
| #include "viewcmn.h" | #include "viewcmn.h" |
| #include "cpucore.h" | |
| static char np2viewclass[] = "NP2-ViewWindow"; | |
| static const char np2viewclass[] = "NP2-ViewWindow"; | |
| const char np2viewfont[] = "£Í£Ó ¥´¥·¥Ã¥¯"; | |
| NP2VIEW_T np2view[NP2VIEW_MAX]; | NP2VIEW_T np2view[NP2VIEW_MAX]; |
| extern HINSTANCE hInst; | extern HINSTANCE hInst; |
| Line 201 BOOL viewer_init(HINSTANCE hPreInst) { | Line 203 BOOL viewer_init(HINSTANCE hPreInst) { |
| np2vc.hIcon = LoadIcon(hInst, MAKEINTRESOURCE(IDI_ICON2)); | np2vc.hIcon = LoadIcon(hInst, MAKEINTRESOURCE(IDI_ICON2)); |
| np2vc.hCursor = LoadCursor(NULL, IDC_ARROW); | np2vc.hCursor = LoadCursor(NULL, IDC_ARROW); |
| np2vc.hbrBackground = (HBRUSH)0; | np2vc.hbrBackground = (HBRUSH)0; |
| np2vc.lpszMenuName = MAKEINTRESOURCE(IDM_VIEW); | np2vc.lpszMenuName = MAKEINTRESOURCE(IDR_VIEW); |
| np2vc.lpszClassName = np2viewclass; | np2vc.lpszClassName = np2viewclass; |
| if (!RegisterClass(&np2vc)) { | if (!RegisterClass(&np2vc)) { |
| return(FAILURE); | return(FAILURE); |
| Line 274 static DWORD last = 0; | Line 276 static DWORD last = 0; |
| for (i=0; i<NP2VIEW_MAX; i++, view++) { | for (i=0; i<NP2VIEW_MAX; i++, view++) { |
| if ((view->alive) && (!view->lock)) { | if ((view->alive) && (!view->lock)) { |
| if (view->type == VIEWMODE_ASM) { | if (view->type == VIEWMODE_ASM) { |
| view->seg = I286_CS; | view->seg = CPU_CS; |
| view->off = I286_IP; | view->off = CPU_IP; |
| view->pos = 0; | view->pos = 0; |
| viewcmn_setvscroll(view->hwnd, view); | viewcmn_setvscroll(view->hwnd, view); |
| } | } |