Changeset 236
- Timestamp:
- Jul 7, 2018, 9:09:57 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bootcode/setup/part_set.asm
r235 r236 257 257 call VideoIO_Color 258 258 259 ; rousseau.comment.201807062250 :: Replaced fixed values with length-query and length-mask 260 259 261 ; ------------------------------------- 1st Part 260 262 mov cx, 0503h 261 263 call VideoIO_Locate 262 264 mov si, offset TXT_TopInfos_No ; "No Hd" 263 mov cl, 5 265 call GetLenOfString 266 and cl, 07h 264 267 call VideoIO_FixedPrint 265 268 mov cx, 050Bh 266 269 call VideoIO_Locate 267 270 mov si, offset TXT_TopInfos_Label ; "Label" 268 mov cl, 5 271 call GetLenOfString 272 and cl, 0fh 269 273 call VideoIO_FixedPrint 270 274 mov cx, 0517h 271 275 call VideoIO_Locate 272 276 mov si, offset TXT_TopInfos_Flags ; "Flags" 273 mov cl, 5 277 call GetLenOfString 278 and cl, 07h 274 279 call VideoIO_FixedPrint 275 280 mov cx, 051Fh 276 281 call VideoIO_Locate 277 282 mov si, offset TXT_TopInfos_Type ; "Type" 278 mov cl, 4 283 call GetLenOfString 284 and cl, 0fh 279 285 call VideoIO_FixedPrint 280 286 … … 283 289 call VideoIO_Locate 284 290 mov si, offset TXT_TopInfos_No ; "No Hd" 285 mov cl, 5 291 call GetLenOfString 292 and cl, 07h 286 293 call VideoIO_FixedPrint 287 294 mov cx, 0533h 288 295 call VideoIO_Locate 289 296 mov si, offset TXT_TopInfos_Label ; "Label" 290 mov cl, 5 297 call GetLenOfString 298 and cl, 0fh 291 299 call VideoIO_FixedPrint 292 300 mov cx, 053Fh 293 301 call VideoIO_Locate 294 302 mov si, offset TXT_TopInfos_Flags ; "Flags" 295 mov cl, 5 303 call GetLenOfString 304 and cl, 07h 296 305 call VideoIO_FixedPrint 297 306 mov cx, 0547h 298 307 call VideoIO_Locate 299 308 mov si, offset TXT_TopInfos_Type ; "Type" 300 mov cl, 4 309 call GetLenOfString 310 and cl, 0fh 301 311 call VideoIO_FixedPrint 302 312
Note:
See TracChangeset
for help on using the changeset viewer.