摘要:
根据分辨率不同,调用不同的css文件方法不同浏览器调用不同CSS文件 将以下JS代码放入<head>和</head>标签内,此段JS代码作用是辨别浏览器分辨率<SCRIPT LANGUAGE="javascript"> <!-- if (window.navigator.userAgent.indexOf("MSIE")>=1) { var IE1024=""; var IE800=""; var IE1152=""; var IEother=&q 阅读全文
摘要:
;王爽汇编语言实验七assume cs:code,ds:data,es:tabledata segmentdb '1975','1976','1977','1978','1979','1980','1981','1982','1983'db '1984','1985','1986','1987','1988','1989','1990', 阅读全文
摘要:
assume cs:codesg , ss:stacksg , ds:datasgstacksg segmentdw 0,0,0,0,0,0,0,0stacksg endsdatasg segmentdb '1. display 'db '2. brows 'db '3. replace 'db '4. modify 'datasg endscodesg segmentstart:mov ax , stacksgmov ss , axmov sp , 16mov ax , datasgmov ds , axmov bx , 0mo 阅读全文
摘要:
assume cs:codea segmentdb 1,2,3,4,5,6,7,8a endsb segmentdb 1,2,3,4,5,6,7,8b endsc segmentdb 0,0,0,0,0,0,0,0c endscode segmentstart: mov cx , 8 mov bx , 0s:mov dl , 0 mov ax , a mov ds , ax add dl , ds:[bx] mov ax , b mov ds , ax add dl , ds:[bx] mov ax , c mov ds , ax add d... 阅读全文