mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
633 B
19 lines
633 B
;/*
|
|
; * Microsoft Confidential
|
|
; * Copyright (C) Microsoft Corporation 1991
|
|
; * All Rights Reserved.
|
|
; */
|
|
CODE SEGMENT BYTE PUBLIC 'CODE'
|
|
ASSUME CS:CODE,DS:CODE
|
|
|
|
BEGIN: ORG 0
|
|
|
|
FNTHEAD:DB 0FFH,"FONT.NT" ;FILE TAG
|
|
DB 8 DUP(0) ;RESERVED
|
|
DW 1 ;CNT OF POINTERS IN HEADER
|
|
DB 1 ;TYPE FOR INFO POINTER
|
|
DW OFFSET INFO,0 ;POINTER TO INFO IN FILE
|
|
INFO: DW 12 ;COUNT OF ENTRIES
|
|
|
|
CODE ENDS
|
|
END
|