dw、db 和 是什么?(问号)在 TASM 结构中是什么意思? [英] What does dw, db and ? (question mark) mean in TASM struc?

查看:50
本文介绍了dw、db 和 是什么?(问号)在 TASM 结构中是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是组装新手,现在我想弄清楚 dwdb? 是什么意思在 struct 中.

I'm new to assembly, and now I'm trying to figure out what do the dw, db, and ? mean in a struc.

例如这里:

struc segment_descriptor
  seg_length0_15        dw      ?
  base_addr0_15         dw      ?
  base_addr16_23        db      ?
  flags                 db      ?
  access                db      ?
  base_addr24_31        db      ?
ends segment_descriptor

推荐答案

dw"是WORD类型的变量,db"是BYTE类型的变量,dd是双字(int32_t)类型的变量.?"表示值未初始化.

"dw" is variable of type WORD, "db" is variable of type BYTE, dd is variable of type double word (int32_t). "?" means the values are not initialized.

这篇关于dw、db 和 是什么?(问号)在 TASM 结构中是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆