在汇编代码问题中Deci到Hexa的转换

时间:2015-09-06 09:13:37

标签: assembly x86 hex dos

我这里有一个汇编程序,必须将十进制数转换为十六进制数。我用数字(123)测试它并显示正确。但当我将其更改为(1234)时,它显示D2而不是4D2(真正的等价物。)请你帮我解决这个问题。我希望你能修改它,让我更了解它。非常感谢。这是代码:

gulp.task 'scripts', () ->
  gulp.src(path.scripts)
  .pipe(
    coffee({bare: true})
    .on 'error', (err) ->
      gutil.log err
      @emit 'end'
  )
  .pipe(concat 'app.min.js')
  .pipe(size())
  .pipe(gulp.dest 'public/js')

0 个答案:

没有答案