This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

bios 5.33.06 bug for dm6467 L2 settings

line 113 of bios 5.33.06/packages/ti/bios/config/bios_DM6467.tci

64K should be 128K

  if (cpu.registers.l2Mode == "0k") {

      iram.len   -= 0x0;

  }

  else if (cpu.registers.l2Mode == "32k") {

      iram.len   -= 0x8000;

  }

  else if (cpu.registers.l2Mode == "64k") {

      iram.len   -= 0x10000;

  }

  else if (cpu.registers.l2Mode == "64k") {

      iram.len   -= 0x20000;

      /*

       * All references to IRAM need to be changed to point to some other

       * available MEM instance.

       */

      var memInst = prog.module("MEM").instances();

      var seg = null;

      for (var i=0; i < memInst.length; i++) {

    if (memInst[i].space == "code/data" && memInst[i] != iram) {

        seg = memInst[i];

    }